PHPRPC只负责数据传输,并且将传输做到最好!它将你以前用传统的 ajax 方式做不到或者很难做到的事情变得轻而易举!
PHP
PHP工作的面试情况及问题集
Standard刚才在网上看到好多PHP的面试题目.说实话,我反感一切笔试:) 但没办法,有些公司因为一下子叫来面试的人太多而无法在第一轮里和你面谈.
PHP APC文件上传进度条实现范例
Standard需先安装APC扩展模块
用GD图库生成横竖柱状图折线图的类
Standard刚才查自己网站的反向链接,发现自己6年前写的一个GD图库生成横竖柱状图和折线图例程居然还挂在不少网站上.那我也再贴出来吧:) Class ImageReport{...}
PHP用GD生成验证码
Standardvalidatecode.php function random($len){...}
PHP分页函数
Standard$sql="SELECT * FROM tb"; //取得总信息数 $result=mysql_query($sql); $total=mysql_num_rows($result); //调用pageft(),每页显示10条信息(使用默认的20时,可以省略此参数),使用本页URL(默认,所以省略掉)。 pageft($total,10,"http://www.yemaosheng.com/index"); //现在产生的全局变量就派上用场了: $result=mysql_query($sql." limit $firstcount,$displaypg");
PHP数据库存储session
StandardFirst up, we need to create a table to handle the session data, and here's how it will look: CREATE TABLE sessions (ID INT NOT NULL AUTO_INCREMENT PRIMARY KEY, SessionID CHAR(26), Data TEXT DEFAULT '', DateTouched INT); Now, session operations script
PHP文件上传时关于open_basedir的报错解决
StandardPHP Upload files to the virtual host errors:
Warning: move_uploaded_file() [function.move-uploaded-file]: open_basedir restriction in effect. File(/tmp/phpEIjcGh) is not within the allowed path(s): (/usr/local/apache/htdocs/) in /usr/local/apache/htdocs/xxxsite/upload.htm on line 21