foreach后的好习惯reset指针位置,unset掉$key,$value
git commit —amend 重写最近commit message
git cherry-pick 移花接木
// php实现下载图片

  1. header('Content-type: image/jpeg');
  2. header('Content-Disposition: attachment; filename=download_name.jpg');
  3. readfile($yourFilePath);

// php5.6开始干掉了@语法,php上传图片兼容版本写法

  1. if (clasxists('\CURLFile')) {
  2. curl_setopt($curl, CURLOPT_SAFE_UPLOAD, true);
  3. $data = array('file' => new \CURLFile(realpath($destination)));//5.5+
  4. } else {
  5. if (defined('CURLOPT_SAFE_UPLOAD')) {
  6. curl_setopt($curl, CURLOPT_SAFE_UPLOAD, false);
  7. }
  8. $data = array('file' => '@' . realpath($destination));//<=5.5
  9. }

// php实现下载图片

  1. header('Content-type: image/jpeg');
  2. header('Content-Disposition: attachment; filename=download_name.jpg');
  3. readfile($yourFilePath);

// php5.6开始干掉了@语法,php上传图片兼容版本写法

  1. if (class_exists('\CURLFile')) {
  2. curl_setopt($curl, CURLOPT_SAFE_UPLOAD, true);
  3. $data = array('file' => new \CURLFile(realpath($destination)));//5.5+
  4. } else {
  5. if (defined('CURLOPT_SAFE_UPLOAD')) {
  6. curl_setopt($curl, CURLOPT_SAFE_UPLOAD, false);
  7. }
  8. data = array('file' => '@' . realpath($destination));//<=5.5
  9. }

//json_encode 使用时的一个坑
json_encode有中文时,需要加入JSON_UNESCAPED_UNICODE,json_encode($data, JSON_UNESCAPED_UNICODE); (PHP版本要求:必须PHP5.4+),否则中文会转义为Unicode编码。

例如:

  1. $arr = array(a‘=>‘只有所有者有读和写的权‘ ,‘b‘=>‘所有者有读和写的权限,组用户只有读的权限‘);
  2. echo json_encode($arr);
  1. 不加JSON_UNESCAPED_UNICODE时为:
    ```
    {“a”:”\u53ea\u6709\u6240\u6709\u8005\u6709\u8bfb\u548c\u5199\u7684\u6743”,”b”:”\u6240\u6709\u8005\u6709\u8bfb\u548c\u5199\u7684\u6743\u9650\uff0c\u7ec4\u7528\u6237\u53ea\u6709\u8bfb\u7684\u6743\u9650”}

  2. 加了JSON_UNESCAPED_UNICODE时,结果为:

    1. {"a":"只有所有者有读和写的权","b":"所有者有读和写的权限,组用户只有读的权限"}

分类: web

标签:   php