$data = array(“name” => “Hagrid”, “age” => “36”);
$data_string = json_encode($data);

$ch = curl_init(‘http://api.local/rest/users’);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, “POST”);
curl_setopt($ch, CURLOPT_POSTFIELDS,$data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
‘Content-Type: application/json’,
‘Content-Length: ‘ . strlen($data_string))
);

$result = curl_exec($ch);

curlpostjson

Linux下PHP已经编译,如何新增so扩展。

PHP下载地址:http://cl1.php.net/distributions/php-5.5.14.tar.gz

用到的一个sh:/usr/local/php/bin/phpize

原理:用phpize在压缩包里面找到对应的对应的扩展文件夹,在里面执行phpize,具体步骤:

PHP安装路径:/usr/local/php

PHP源码路径:/root/php-5.5.14

扩展假设zlib:/root/php-5.5.14/ext/bz2

执行代码:

ln -s /usr/local/php/bin/phpize /usr/bin/phpize

cd /root/php-5.5.14/ext/bz2

phpize

//这里提示报错,安装bzip2,bzip2-devel configure: error: Please reinstall the BZip2 distribution

//yum install -y bzip2 bzip2-devel

./configure –with-php-config=/usr/local/php/bin/php-config

make

make test

make install

vim /etc/php.ini ##加入extension=bz2.so

今天安装了某个程序时, 由于程序很傻X的 新建了一个 root@localhost 用户 并把 root权限全部改为了 no

这下 我也 傻X 了.服务器上所有程序都崩溃了. 此时即使用root用户登陆进去也无法再修改权限了.

赶紧 service mysqld stop 先停掉mysql 然后用安全模式 启动mysql

/usr/bin/mysqld_safe –skip-grant-tables

root 登陆 ..不需要密码

进入 mysql 这个数据库(注意数据库名是mysql) ,把user表的 root@localhost 干掉 或者 把权限都改成yes 即可.

然后重启 mysql服务

权限恢复…

来源:http://www.2cto.com/database/201306/221847.html

php mb_substr()函数是截取中文字符串的方法
substr()函数用来截取字符串,但是对于中文字符会出现问题,而mb_substr()和mb_strcut这两个函数可以
用法与substr()相似,只是在函数最后要加入多一个参数,以设定字符串的编码,使用这两个函数需要在php.ini中把php_mbstring.dll打开。
在windows中 mb_substr($string,0,4)这样都没有问题,但是在linux某些php版本中可能出现问题
为了兼容,我们要把编码到时,下面是个demo

 

';
		echo mb_substr($string,0,4,'utf-8').'...
'; echo mb_strcut($string,0,4,'utf-8').'...'; ?>