Submitted by gouki on 2015, July 6, 3:39 PM
纯笔记做个记录
1、http://mirrors.aliyun.com/ ,这是阿里的源
2、这是dotdeb的说明:http://mirrors.aliyun.com/help/dotdeb
3、阿里云的说明:
XML/HTML代码
- 编辑/etc/apt/sources.list文件(需要使用sudo), 在文件最后面添加以下条目(操作前请做好相应备份)
-
- deb http://mirrors.aliyun.com/dotdeb/packages.dotdeb.org wheezy all
- deb-src http://mirrors.aliyun.com/dotdeb/packages.dotdeb.org wheezy all
其实上面的源的写法是错误的,不需要package.dotdeb.org,应该是这样
XML/HTML代码
-
- deb http://mirrors.aliyun.com/dotdeb wheezy all
- deb-src http://mirrors.aliyun.com/dotdeb wheezy all
不过,如果是默认这样其实没有什么特别用,PHP还是5.4,所以如果要针对PHP,就需要再加上
XML/HTML代码
- deb http://mirrors.aliyun.com/dotdeb wheezy-php56 all
- deb-src http://mirrors.aliyun.com/dotdeb wheezy-php56 all
其实说白了就是看:http://mirrors.aliyun.com/dotdeb/dists/,看这一页支持哪些,然后加在源里就OK了。就象官网说的,如果是阿里云服务器,请使用aliyuncs,流量直接从内网走~
PHP | 评论:0
| 阅读:19228
Submitted by gouki on 2015, June 19, 9:13 AM
众所周知,用curl上传只要设置4个变量即可(非HTTPS网站),那就是curlopt_url,curlopt_post,curlopt_returntransfer,curlopt_postfields,当然这4个都是大写。
curlopt_post,curlopt_returntransfer 都是 true,curlopt_url则是你要提交的网址,那么剩下的,curlopt_postfields就是你要上传的内容了。
上传文件在这里也变得非常简单,只需对应的值前面加个“@”即可,如curl_setopt($ch,CURLOPT_POSTFIELDS,array('file'=>'@/var/www/images/abc.jpg')); 文件通过realpath判断后存在的即可。
但是,这一切在php5.6里就发生了改成。php5.6不再支持@这样的上传方式,只能使用curl_file_create的方式来,所以上面的代码要改成
PHP代码
- curl_setopt($ch,CURLOPT_POSTFIELDS,array('file'=>curl_file_create('/var/www/images/abc.jpg','image/jpg','abc')));
看看文档里怎么说:
XML/HTML代码
- CURLFile should be used to upload a file with CURLOPT_POSTFIELDS.
然后官网的手册中的最后一条评论,仿佛是看不下去,写了个处理上传的程序
PHP代码
- There are "@" issue on multipart POST requests.
-
- Solution for PHP 5.5 or later:
- - Enable CURLOPT_SAFE_UPLOAD.
- - Use CURLFile instead of "@".
-
- Solution for PHP 5.4 or earlier:
- - Build up multipart content body by youself.
- - Change "Content-Type" header by yourself.
-
- The following snippet will help you :D
-
- <?php
-
-
-
-
-
-
-
-
-
- function curl_custom_postfields($ch, array $assoc = array(), array $files = array()) {
-
-
- static $disallow = array("\0", "\"", "\r", "\n");
-
-
- foreach ($assoc as $k => $v) {
- $k = str_replace($disallow, "_", $k);
- $body[] = implode("\r\n", array(
- "Content-Disposition: form-data; name=\"{$k}\"",
- "",
- filter_var($v),
- ));
- }
-
-
- foreach ($files as $k => $v) {
- switch (true) {
- case false === $v = realpath(filter_var($v)):
- case !is_file($v):
- case !is_readable($v):
- continue;
- }
- $data = file_get_contents($v);
- $v = call_user_func("end", explode(DIRECTORY_SEPARATOR, $v));
- $k = str_replace($disallow, "_", $k);
- $v = str_replace($disallow, "_", $v);
- $body[] = implode("\r\n", array(
- "Content-Disposition: form-data; name=\"{$k}\"; filename=\"{$v}\"",
- "Content-Type: application/octet-stream",
- "",
- $data,
- ));
- }
-
-
- do {
- $boundary = "---------------------" . md5(mt_rand() . microtime());
- } while (preg_grep("/{$boundary}/", $body));
-
-
- array_walk($body, function (&$part) use ($boundary) {
- $part = "--{$boundary}\r\n{$part}";
- });
-
-
- $body[] = "--{$boundary}--";
- $body[] = "";
-
-
- return @curl_setopt_array($ch, array(
- CURLOPT_POST => true,
- CURLOPT_POSTFIELDS => implode("\r\n", $body),
- CURLOPT_HTTPHEADER => array(
- "Expect: 100-continue",
- "Content-Type: multipart/form-data; boundary={$boundary}",
- ),
- ));
- }
好吧,其实多文件上传用这样的方式就挺好。
PHP | 评论:1
| 阅读:22062
Submitted by gouki on 2015, June 15, 1:47 PM
现在写PHP好象不用Composer总感觉有点Low了吧?好吧,即使这样,你在使用composer update的时候是不是也发现网速、进度low的不行。一个composer update要等半天。不说这个吧,你就是一个composer init也要等半天,这只是个空项目,你都要等这么久?composer 如果不加-vvv参数,你就感觉整个世界都停在那里了。所以,如果连接原始的composer还是加个-vvv参数吧
国内常见镜像有三个:
XML/HTML代码
- http://pkg.phpcomposer.com/
- https://toran.reimu.io/
- http://packagist.cn/
使用方法很简单一种是在~/.composer/config.json中加入相应的信息,一种是在当前项目的composer.json中加入:
JavaScript代码
- "repositories": [
- {"type": "composer", "url": "http://pkg.phpcomposer.com/repo/packagist/"},
- {"packagist": false}
- ]
加入的时候注意语法,如果是json的最后一个元素,记得不要加","即可,否则 会报错
OK这样就可以了,尽情的尝试吧(packagist.cn更新的有点慢,toran.reimu.io 是https的,如果你本机openssl版本低可能会更新失败)。好象话这么一说,只能用pkg.phpcomposer.com的源了(嗯,忍忍吧,如果他不能用,你再换)
更新:composer 源
Tags: composer
PHP | 评论:0
| 阅读:22967
Submitted by gouki on 2015, March 12, 10:36 PM
出现标题这样的错误大概是:
1、模块加载了两次,所以php -i|grep Configure,看一下配置文件和配置include的目录,对于这些文件中是否有同名的module
2、动态加载模块时,模块的目录下与php.ini中都有一个同名so
知道上述的问题就好办了,先看php配置文件和include目录下的文件,先整理内容。然后查看extension_dir,看看这个目录下的文件与include中的文件引用路径是否一致。
PHP | 评论:0
| 阅读:21084
Submitted by gouki on 2015, March 6, 2:19 PM
看到andot的hprose中有使用array_key_exists,就想问为什么不用isset,再一想哦。isset不能判断$a['xxx'] = null的情况。这时候看了一下评论,有人建议用isset() || array_key_exists来辅助判断,说是性能有大提升。
于是写了点代码测试,果然:
XML/HTML代码
- count array: 999900 ; loop :100000
- $array['109011'] = 109011;
- 1. array_key_exists(109011,$array);
- bool(true)
- 0.021718
-
- 2. isset($array['109011']);
- bool(true)
- 0.004888
-
- 3. isset( $array['109011'] ) || array_key_exists( '109011', $array )
- bool(true)
- 0.005100
-
-
- count array: 999900 ; loop :100000
- $array['109011'] = null;
- 1. array_key_exists(109011,$array);
- bool(true)
- 0.026091
-
- 2. isset($array['109011']);
- bool(false) //注意看这里
- 0.006697
-
- 3. isset( $array['109011'] ) || array_key_exists( '109011', $array )
- bool(true)
- 0.026621
基本上,在$a['x'] 不是null的情况下,性能提升4倍左右 ,如果该值是null,这损耗可以接受。
数组长度是999900,循环100000次
所以以后代码还是 isset($a[$key])||array_key_exists($key,$a) 比较好。
当然,如果你平时处理isset($_GET['xxx'])的时候,不需要用array_key_exists的,因为URL中都是string
PHP | 评论:0
| 阅读:19095