PHP小技巧搜集,每个PHPer都来露一手

这个帖子主要是所有的PHPers把自己在开发或学习中的一些经验技巧进行总结,主要就是把解决某种事情更好的方法告诉大家.
我先说几个:

1,假如你使用echo输出一个简单的语句,类似与:

复制代码 代码如下:

<?php 
echo "Hello World!"; 
?> 
那么你可以偷懒一下,写成这样: 
<?="Hello World!";?>  



2,str_replace()可以使用数组进行替换,比如: 

复制代码 代码如下:

<? 
$string  = "Welcome To The PHPCHINA.COM ,Have A Good Time."; 
$search = array("Welcome To The PHPCHINA.COM", "Have A Good Time", "."); 
$replace   = array("PHP is very Good", "I Like It", "!"); 
$newstring = str_replace($search, $replace, $string); 
echo $string."<br />"; 
echo $newstring; 
?>

 
大家可不要把经验都藏起来哦,^_^!
多小的技巧算小技巧?
我记得以前发过这个缓存变量的函数 缓存目录为cache需要有读写权限 另外还有一个定时刷新用的函数先不写出来 否则就显得这个技巧太大了 其实和dz的刷新模式比较像

复制代码 代码如下:

function getQueryCache($key){ 
        $cacFile = "cache/" . $key . ".php"; 
        if(file_exists($cacFile)){ 
                @include($cacFile); 
                return $cacValue; 
        } 
        return false; 

function setQueryCache($key, & $result){ 
        $cacFile = "cache/" . $key . ".php"; 
        $fp = fopen($cacFile, "w"); 
        if(false != $fp){ 
                fwrite($fp, "<?php\n\$cacValue = " . var_export($result, true) . "\n?>"); 
                fclose($fp); 
                return true; 
        } 
        return false; 
}

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/f96213618ec0faedc613ae0f78406de9.html