-
php程序与Javascript的两种交互方式
本文为大家讲解的是php和js的交互方法,在网页制作过程中怎样在不刷新页面的情况下使前台页面和后台CGI页面保持交互一直是个问题。这里介绍两个方法...
PHP 2014-12-10 03:15:03 -
用php或asp创建网页桌面快捷方式的代码
本文为大家讲解的是php实现的创建网页快捷方式的示例代码,感兴趣的同学参考下。 上传到网站,shortcut.php 就会有提示下载一个名为 张楚网站.urll文件,保存在本地就是一个快捷方式! 新建一个PHP文档:名字好记就行如:shortcut.php PHP文档中的内容: <?php $Shortcut = "[InternetShortcut] URL=http://www.phperz.com/ IDList= [{000214A0-0000-0000-C000-000000000046}] Prop3=19,2 "; Header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=phperz.url;"); echo $Shortcut; ?> 要想出现图标请先确保网站根目录中有 favicon.ico 文件 上传到...
PHP 2014-12-09 02:03:07 -
php curl POST 编码方式 multipart/form-data与application/x-www-form-urlencode的区别
本文为大家讲解了php curl POST 编码方式 multipart/form-data与application/x-www-form-urlencode的区别,感兴趣的同学参考下。 需求背景 CURL在 a.php 中以 POST方式向 b.php 提交数据,但b.php无法接收到数据,而 CURL 操作显示成功...
PHP 2014-12-08 05:54:07 -
主打零门槛QQ拼音3.4版试用输入方式
距上次更新不足两月,QQ拼音3.4版正式上线。延续上一版的集成大法,新版QQ拼音主打零门槛的输入方式,集成了更多易用的输入功能:新增的手写输入功能,加上笔画输入和混拼输入上的优化,只要会认字、会写字就能实现快速打字...
系统程序 2014-12-07 16:03:11 -
php 使用post,get的一种简洁方式
本文为大家讲解的是php 使用post,get的一种简洁方式实现,但这样并不安全,感兴趣的同学可以参考下。 使用$_POST,和$_GET获取客户发来的信息时,一般是使用数组加小标的方式...
PHP 2014-12-07 15:09:10 -
php 高性能书写方式
本文为大家提供了二个示例代码,为大家验证php 高性能书写方式,感兴趣的同学参考下。 示例: $arr = array( 'attr1' => 1 , 'attr2' => 1 , 'attr3' => 1 , ); $startTime = microtime( true ); for( $i = 0 ; $i < 1000 ; $i++ ) { if( isset( $arr['attr1'] ) ) { } if( isset( $arr['attr2'] ) ) { } if( isset( $arr['attr3'] ) ) { } } $endTime = microtime( true ); printf( "%d us.n" , ( $endTime - $startTime ) * 1000000 ); $startTime = microtime( ...
PHP 2014-12-07 06:27:04 -
php include加载文件两种方式效率比较
本文为大家讲解了php下 include加载文件两种方式效率比较,一种是foreach循环加载,一种是把所有要加载的include文件放到一个文件里,其他地方加载这个include.php文件,感兴趣的同学参考下。 先来说说两种方式: 1)定义一个字符串变量,里面保存要加载的文件列表...
PHP 2014-12-07 00:06:11 -
教你PowerPoint的六个快捷方式
通常情况下,你可以利用屏幕左下角的视图按钮在几种不同的视图状态(普通视图、幻灯片浏览视图、幻灯片放映)之间进行快速切换。但你恐怕不知道使用键盘与视图按钮相配合还可以获得完全不同的效果...
系统程序 2014-12-06 01:45:11 -
PHP 删除一个目录及目录下的所有文件的实现方式
本文是一个PHP实现的可以用来删除一个目录及目录下的所有文件的函数,感兴趣的同学参考下。 /***** *@dir - Directory to destroy *@virtual[optional]- whether a virtual directory */ function destroyDir($dir, $virtual = false) { $ds = DIRECTORY_SEPARATOR; $dir = $virtual ? realpath($dir) : $dir; $dir = substr($dir, -1) == $ds ? substr($dir, 0, -1) : $dir; if (is_dir($dir) && $handle = opendir($dir)) { while ($file = readdir($handle)) { if ($file == '.' || $file == '..') { continue; } elseif (is_dir(...
PHP 2014-12-03 09:01:20 -
php 通过curl模拟POST提交数据的方式
本文为大家讲解的是php 通过curl模拟POST提交数据的方式,感兴趣的同学参考下。 $post_data = array(); $post_data['clientname'] = "test08"; $post_data['clientpasswd'] = "test08"; $post_data['submit'] = "submit"; $url='http://xxx.xxx.xxx.xx/xx/xxx/top.php'; $o=""; foreach ($post_data as $k=>$v) { $o.= "$k=".urlencode($v)."&"; } $post_data=substr($o,0,-1); $ch = curl_init(); curl_setopt($ch, CURLOPT_P...
PHP 2014-12-03 04:36:45