zoukankan      html  css  js  c++  java
  • PHP常用代码:

    1、$array=explode(separator,$string); //字符串-》数组
    2、$string=implode(glue,$array);//数组-》字符串
    3、file_put_contents('setting.php', "<?php return " . var_export($list, true) . ";");//数组保存
    4、file_get_contents('php://input');
    $GLOBALS['HTTP_RAW_POST_DATA']方式接受数据,如果用过post过来的数据不是PHP能够识别的文档类型,比如 text/xml 或者 soap 等等,我们可以用$GLOBALS['HTTP_RAW_POST_DATA']来接收。
    此变量仅在碰到未识别MIME 类型的数据时产生。
    $HTTP_RAW_POST_DATA 对于enctype="multipart/form-data" 表单数据不可用。
    也就是说使用$HTTP_RAW_POST_DATA无法接收网页表单post过来的数据。
    5、截掉最后一个字符
    I、substr($str,0,strlen($str)-1)
    II、substr($str,0,-1)
    III、rtrim($str,",")
    6、数组中unset()元素之后,重新进行索引,使用 $arr=array_values($arr);
    7、__FILE__ 表示文件的物理路径(D:wampwwwucenteradmin.php) ,
    substr(__FILE__,0,-9) => D:wampwwwucenter
      substr(__FILE__,0,1) => D
    $rest_1 = substr("abcdef", 2); // returns "cdef" 
    $rest_2 = substr("abcdef", -2); // returns "ef" 
     
    $rest1 = substr("abcdef", 0, 0); // returns "" 
    $rest2 = substr("abcdef", 0, 2); // returns "ab" 
    $rest3 = substr("abcdef", 0, -1); // returns "abcde" 
    $rest4 = substr("abcdef", 2,0); // returns "" 
    $rest5 = substr("abcdef", 2,2); // returns "cd" 
    $rest6 = substr("abcdef", 2, -1); // returns "cde" 
    $rest7 = substr("abcdef", -2,0); // returns "" 
    $rest8 = substr("abcdef", -2,2); // returns "ef" 
    $rest9 = substr("abcdef", -2,-1); // returns "e"
     
     
     
    8、
    file_put_contents($file, $content,FILE_APPEND)

     
     
  • 相关阅读:
    css 选择器
    用 jupyter notebook 打开 oui.txt 文件出现的问题及解决方案
    jupyter notebook 中用 matplot 画图不显示图像
    dropna(thresh=n) 的用法
    pandas 对象中 to_pickle 方法参数命名问题,不能用frame
    Index.get_indexer 方法的含义
    7)微分
    5)函数极限与连续函数
    3)数据科学的数学之序列与极限--阶乘/指数增长比较
    2)数据科学的数学之序列与极限
  • 原文地址:https://www.cnblogs.com/mracale/p/5671692.html
Copyright © 2011-2022 走看看