1. 相対パスを使用しないでください:
require_once('../../lib/some_class.php');
もう 1 つの問題は、スケジュールされたタスクがスクリプトを実行するときに、その親ディレクトリが作業ディレクトリではない可能性があります。 したがって、最善のオプションは絶対パスを使用することです:
view sourceprint? define('ROOT' , '/var/www/project/'); require_once(ROOT . '../../lib/some_class.php'); //rest of the code
//suppose your script is /var/www/project/index.php //Then __FILE__ will always have that full path. define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME)); require_once(ROOT . '../../lib/some_class.php'); //rest of the code
2. require、include、include_once、required_once を直接使用しないでください
クラス ライブラリ、ツール ファイル、ヘルパー関数など、スクリプトの先頭に複数のファイルを導入できます。より柔軟なヘルパー関数インクルード ファイルを作成する必要があります。このコードの方が読みやすいです。 将来的には、必要に応じて次のようにこの機能を拡張できます:
require_once('lib/Database.php'); require_once('lib/Mail.php'); require_once('helpers/utitlity_functions.php');
さらに多くのこともできます: 同じファイルの複数のディレクトリを検索します。 クラスファイルを配置するディレクトリは、コードをいちいち修正することなく簡単に変更できます。 同様の関数を使用して、HTML コンテンツなどのファイルをロードすることができます
3. アプリケーションのコードのデバッグを継続します
開発環境では、データベース クエリ ステートメントを出力し、問題が解決したら、問題のある変数値をダンプします。場合は、コメントするか削除します。ただし、デバッグ コードは保存しておいた方がよいでしょう。 開発環境では、次のことができます:
function load_class($class_name) { //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); } load_class('Database'); load_class('Mail');
function load_class($class_name) { //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); } }
system、exec、passthru、shell_exec これらの 4 つの関数は、それぞれシステム コマンドを実行するために使用できます。動作は少し異なります。問題は、共有ホスティングの場合、特定の機能が選択的に無効になる可能性があることです。ほとんどの初心者は、使用する前に毎回どの機能が利用可能であるかを確認する傾向があります。 より良い解決策は、関数をクロスプラットフォーム関数にカプセル化することです
利用可能なシステム関数がある限り、上記の関数はシェル コマンドを実行します。これにより、コードの一貫性が維持されます 5.define('ENVIRONMENT' , 'development'); if(! $db->query( $query ) { if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } }
define('ENVIRONMENT' , 'production'); if(! $db->query( $query ) { if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } }
/** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec */ function terminal($command) { //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; }return array('output' => $output , 'status' => $return_var); } terminal('ls');
function add_to_cart($item_id , $qty) { $_SESSION['cart']['item_id'] = $qty; }add_to_cart( 'IPHONE3' , 2 );
//終了タグの後に追加の文字
function add_to_cart($item_id , $qty) { if(!is_array($item_id)) { $_SESSION['cart']['item_id'] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart']['i_id'] = $qty; } } } add_to_cart( 'IPHONE3' , 2 ); add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) );
を省略する習慣を付けてください。
<?php class super_class { function super_function() { //super code } } //No closing tag
function print_header() { echo "<div id='header'>Site Log and Login links</div>"; } function print_footer() { echo "<div id='footer'>Site was made by me</div>"; } print_header(); for($i = 0 ; $i < 100; $i++) { echo "I is : $i '; }print_footer();
function print_header() { $o = "<div id='header'>Site Log and Login links</div>"; return $o; }function print_footer() { $o = "<div id='footer'>Site was made by me</div>"; return $o; }echo print_header(); for($i = 0 ; $i < 100; $i++) { echo "I is : $i '; } echo print_footer();
$xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>'; $xml = "<response> <code>0</code> </response>";//Send xml data echo $xml;
$xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>'; $xml = "<response> <code>0</code> </response>"; //Send xml data header("content-type: text/xml"); echo $xml;
JavaScriptheader("content-type: application/x-javascript"); echo "var a = 10"; CSSheader("content-type: text/css"); echo "#div id { background:#000; }";
//Attempt to connect to database $c = mysqli_connect($this->host , $this->username, $this->password); //Check connection validity if (!$c) { die ("Could not connect to the database host: ". mysqli_connect_error()); } //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )) { die('mysqli_set_charset() failed'); }
$value = htmlentities($this->value , ENT_QUOTES , CHARSET);
$images = array( 'myself.png' , 'friends.png' , 'colleagues.png' );$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; 更聪明的做法, 使用 json_encode: $images = array( 'myself.png' , 'friends.png' , 'colleagues.png' );$js_code = 'var images = ' . json_encode($images); echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"]
优雅乎?
13. 写文件前, 检查目录写权限 写或保存文件前, 确保目录是可写的, 假如不可写, 输出错误信息. 这会节约你很多调试时间. linux系统中, 需要处理权限, 目录权限不当会导致很多很多的问题, 文件也有可能无法读取等等. 确保你的应用足够智能, 输出某些重要信息.
$contents = "All the content";$file_path = "/var/www/project/content.txt"; file_put_contents($file_path , $contents);
这大体上正确. 但有些间接的问题. file_put_contents 可能会由于几个原因失败:
>>父目录不存在 >>目录存在, 但不可写 >>文件被写锁住? 所以写文件前做明确的检查更好.$contents = "All the content"; $dir = '/var/www/project'; $file_path = $dir . "/content.txt"; if(is_writable($dir)) { file_put_contents($file_path , $contents); } else { die("Directory $dir is not writable, or does not exist. Please check"); }
// Read and write for owner, read for everybody else chmod("/somedir/somefile", 0644); // Everything for owner, read and execute for others chmod("/somedir/somefile", 0755);
if($_POST['submit'] == 'Save') { //Save the things }
上面大多数情况正确, 除了应用是多语言的. ‘Save’ 可能代表其它含义. 你怎么区分它们呢. 因此, 不要依赖于submit按钮的值.
if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ) { //Save the things }
//Delay for some time function delay() { $sync_delay = get_option('sync_delay'); echo "Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done "; }
//Delay for some time function delay() { static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done "; }
$_SESSION['username'] = $username; $username = $_SESSION['username'];
define('APP_ID' , 'abc_corp_ecommerce'); //Function to get a session variable function session_get($key) { $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false; } //Function set the session variable function session_set($key , $value) { $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true; }
function utility_a() { //This function does a utility thing like string processing }function utility_b() { //This function does nother utility thing like database processing } function utility_c() { //This function is ... }
class Utility {public static function utility_a(){}public static function utility_b() { }public static function utility_c() { } }//and call them as $a = Utility::utility_a(); $b = Utility::utility_b();
<span style="color:#333333;font-family:''Helvetica, Arial, sans-serif'';">if($a == true) $a_count++;</span>
这绝对WASTE。 写成:
<span style="color:#333333;font-family:''Helvetica, Arial, sans-serif'';">if($a == true) { $a_count++; }</span>
foreach($arr as $c => $v) { $arr[$c] = trim($v); }
$arr = array_map('trim' , $arr);
$amount = intval( $_GET['amount'] ); $rate = (int) $_GET['rate'];
$db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ?
当导入或导出csv文件时, 常常会这么做。 不要认为上面的代码会经常因内存限制导致脚本崩溃. 对于小的变量是没问题的, 但处理大数组的时候就必须避免.
确保通过引用传递, 或存储在类变量中:$a = get_large_array(); pass_to_function(&$a);
class A { function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a } }
function add_to_cart() {$db = new Database(); $db->query("INSERT INTO cart ....."); } function empty_cart() {$db = new Database(); $db->query("DELETE FROM cart ....."); }
<span style="color:#333333;font-family:''Helvetica, Arial, sans-serif'';">$query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')"; $db->query($query); //call to mysqli_query()</span>
<span style="color:#333333;font-family:''Helvetica, Arial, sans-serif'';">function insert_record($table_name , $data) { foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);} $data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone); insert_record('users' , $data);</span>
看到了吗? 这样会更易读和扩展. record_data 函数小心的处理了转义。 最大的优点是数据被预处理为一个数组, 任何语法错误都会被捕获。 该函数应该定义在某个database类中, 你可以像 $db->insert_record这样调用。 查看本文, 看看怎样让你处理数据库更容易。 类似的也可以编写update,select,delete方法. 试试吧.
27. 將数据库生成的内容缓存到静态文件中 如果所有的内容都是从数据库获取的, 它们应该被缓存. 一旦生成了, 就將它们保存在临时文件中. 下次请求该页面时, 可直接从缓存中取, 不用再查数据库. 好处: >>节约php处理页面的时间, 执行更快 >>更少的数据库查询意味着更少的mysql连接开销 28. 在数据库中保存session 基于文件的session策略会有很多限制. 使用基于文件的session不能扩展到集群中, 因为session保存在单个服务器中. 但数据库可被多个服务器访问, 这样就可以解决问题. 在数据库中保存session数据, 还有更多好处: >>处理username重复登录问题. 同个username不能在两个地方同时登录. >>能更准备的查询在线用户状态. 29. 避免使用全局变量 >>使用 defines/constants >>使用函数获取值 >>使用类并通过$this访问 30. 在head中使用base标签 没听说过? 请看下面:
<head> <base href="http://www.domain.com/store/"> </head> <body> <img src="happy.jpg" /> </body> </html>
<a href="home.php">Home</a> <a href="products/ipad.php">Ipad</a>
<span style="color:#333333;font-family:''Helvetica, Arial, sans-serif'';"><a href="../home.php">Home</a> <a href="ipad.php">Ipad</a></span>
因为目录不一样. 有这么多不同版本的导航菜单要维护, 很糟糕啊。 因此, 请使用base标签.
现在, 这段代码放在应用的各个目录文件中行为都一致. 31. 永远不要將 error_reporting 设为 0 关闭不相的错误报告. E_FATAL 错误是很重要的.
<span style="color:#333333;font-family:'Helvetica, Arial, sans-serif';">ini_set('display_errors', 1); error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);</span>
$ php -a
Interactive shell
php > echo strtotime("0000-00-00 00:00:00");
-62170005200
php > echo strtotime('1000-01-30');
-30607739600
php > echo strtotime('2100-01-30');
4104930600
但在32位机器中, 它们將是bool(false). 查看这里, 了解更多. 33. 不要过分依赖 set_time_limit 如果你想限制最小时间, 可以使用下面的脚本:<span style="color:#333333;font-family:''Helvetica, Arial, sans-serif'';">set_time_limit(30); //Rest of the code</span>
$action = isset($_REQUEST['action']) ? $_REQUEST['action'] : 0;
define('yourPage',1);
if (!defined('yourPage')) die('Access Denied');
public function dbExec($query) { $result = $this->db->exec($query); if (PEAR::isError($result)) errorRedirect($result->getMessage(), true); else return $result; }
// checks if arguments given are integer values not less than 0 - has multiple arguments function sanitizeInput() { $numargs = func_num_args(); $arg_list = func_get_args(); for ($i = 0; $i < $numargs; $i++) { if (!is_numeric($arg_list[$i]) || $arg_list[$i] < 0) errorRedirect("Unexpected variable value", true); } }
require_once PROJECTROOT.'libs/messages.class.php'; $message = new Message(); switch ($action) { case 'display': $message->display(); break; ...
private function getSentMessages($id) { $this->util->sanitizeInput($id); $pm_table = $GLOBALS['config']['privateMsg']; $users = $GLOBALS['config']['users']; $sql = "SELECT PM.*, USR.username as name_sender FROM $pm_table PM, $users USR WHERE id_sender = '$id' AND sender_purge = FALSE AND USR.id = PM.id_receiver AND is_read = TRUE ORDER BY date_sent DESC"; $result = $this->dbQueryAll($sql); return $result; }
function smartyObject() { if ($GLOBALS['config']['SmartyObj'] == 0) { $smarty = new SmartyGame(); $GLOBALS['config']['SmartyObj'] = $smarty; } else $smarty = $GLOBALS['config']['SmartyObj']; return $smarty; }
functionbrowse_infor(){$browser="";$browserver="";$Browsers=array("Lynx","MOSAIC","AOL","Opera","JAVA","MacWeb","WebExplorer","OmniWeb");$Agent=$GLOBALS["HTTP_USER_AGENT"];for($i=0;$i<=7;$i++){if(strpos($Agent,$Browsers[$i])){$browser=$Browsers[$i];$browserver="";}}if(ereg("Mozilla",$Agent)&&!ereg("MSIE",$Agent)){$temp=explode("(",$Agent);$Part=$temp[0];$temp=explode("/",$Part);$browserver=$temp[1];$temp=explode("",$browserver);$browserver=$temp[0];$browserver=preg_replace("/([\d\.]+)/","\1",$browserver);$browserver="$browserver";$browser="NetscapeNavigator";}if(ereg("Mozilla",$Agent)&&ereg("Opera",$Agent)){$temp=explode("(",$Agent);$Part=$temp[1];$temp=explode(")",$Part);$browserver=$temp[1];$temp=explode("",$browserver);$browserver=$temp[2];$browserver=preg_replace("/([\d\.]+)/","\1",$browserver);$browserver="$browserver";$browser="Opera";}if(ereg("Mozilla",$Agent)&&ereg("MSIE",$Agent)){$temp=explode("(",$Agent);$Part=$temp[1];$temp=explode(";",$Part);$Part=$temp[1];$temp=explode("",$Part);$browserver=$temp[2];$browserver=preg_replace("/([\d\.]+)/","\1",$browserver);$browserver="$browserver";$browser="InternetExplorer";}if($browser!=""){$browseinfo="$browser$browserver";}else{$browseinfo="Unknown";}return$browseinfo;}//调用方法$browser=browseinfo();直接返回结果
functionosinfo(){$os="";$Agent=$GLOBALS["HTTP_USER_AGENT"];if(eregi('win',$Agent)&&strpos($Agent,'95')){$os="Windows95";}elseif(eregi('win9x',$Agent)&&strpos($Agent,'4.90')){$os="WindowsME";}elseif(eregi('win',$Agent)&&ereg('98',$Agent)){$os="Windows98";}elseif(eregi('win',$Agent)&&eregi('nt5\.0',$Agent)){$os="Windows2000";}elseif(eregi('win',$Agent)&&eregi('nt',$Agent)){$os="WindowsNT";}elseif(eregi('win',$Agent)&&eregi('nt5\.1',$Agent)){$os="WindowsXP";}elseif(eregi('win',$Agent)&&ereg('32',$Agent)){$os="Windows32";}elseif(eregi('linux',$Agent)){$os="Linux";}elseif(eregi('unix',$Agent)){$os="Unix";}elseif(eregi('sun',$Agent)&&eregi('os',$Agent)){$os="SunOS";}elseif(eregi('ibm',$Agent)&&eregi('os',$Agent)){$os="IBMOS/2";}elseif(eregi('Mac',$Agent)&&eregi('PC',$Agent)){$os="Macintosh";}elseif(eregi('PowerPC',$Agent)){$os="PowerPC";}elseif(eregi('AIX',$Agent)){$os="AIX";}elseif(eregi('HPUX',$Agent)){$os="HPUX";}elseif(eregi('NetBSD',$Agent)){$os="NetBSD";}elseif(eregi('BSD',$Agent)){$os="BSD";}elseif(ereg('OSF1',$Agent)){$os="OSF1";}elseif(ereg('IRIX',$Agent)){$os="IRIX";}elseif(eregi('FreeBSD',$Agent)){$os="FreeBSD";}if($os=='')$os="Unknown";return$os;}//调用方法$os=os_infor();
$mime_types=array('gif'=>'image/gif','jpg'=>'image/jpeg','jpeg'=>'image/jpeg','jpe'=>'image/jpeg','bmp'=>'image/bmp','png'=>'image/png','tif'=>'image/tiff','tiff'=>'image/tiff','pict'=>'image/x-pict','pic'=>'image/x-pict','pct'=>'image/x-pict','tif'=>'image/tiff','tiff'=>'image/tiff','psd'=>'image/x-photoshop', 'swf'=>'application/x-shockwave-flash','js'=>'application/x-javascript','pdf'=>'application/pdf','ps'=>'application/postscript','eps'=>'application/postscript','ai'=>'application/postscript','wmf'=>'application/x-msmetafile', 'css'=>'text/css','htm'=>'text/html','html'=>'text/html','txt'=>'text/plain','xml'=>'text/xml','wml'=>'text/wml','wbmp'=>'image/vnd.wap.wbmp', 'mid'=>'audio/midi','wav'=>'audio/wav','mp3'=>'audio/mpeg','mp2'=>'audio/mpeg', 'avi'=>'video/x-msvideo','mpeg'=>'video/mpeg','mpg'=>'video/mpeg','qt'=>'video/quicktime','mov'=>'video/quicktime', 'lha'=>'application/x-lha','lzh'=>'application/x-lha','z'=>'application/x-compress','gtar'=>'application/x-gtar','gz'=>'application/x-gzip','gzip'=>'application/x-gzip','tgz'=>'application/x-gzip','tar'=>'application/x-tar','bz2'=>'application/bzip2','zip'=>'application/zip','arj'=>'application/x-arj','rar'=>'application/x-rar-compressed', 'hqx'=>'application/mac-binhex40','sit'=>'application/x-stuffit','bin'=>'application/x-macbinary', 'uu'=>'text/x-uuencode','uue'=>'text/x-uuencode', 'latex'=>'application/x-latex','ltx'=>'application/x-latex','tcl'=>'application/x-tcl', 'pgp'=>'application/pgp','asc'=>'application/pgp','exe'=>'application/x-msdownload','doc'=>'application/msword','rtf'=>'application/rtf','xls'=>'application/vnd.ms-excel','ppt'=>'application/vnd.ms-powerpoint','mdb'=>'application/x-msaccess','wri'=>'application/x-mswrite',);5、php生成excel文档<?header("Content-type:application/vnd.ms-excel");header("Content-Disposition:filename=test.xls");echo"test1\t";echo"test2\t\n";echo"test1\t";echo"test2\t\n";echo"test1\t";echo"test2\t\n";echo"test1\t";echo"test2\t\n";echo"test1\t";echo"test2\t\n";echo"test1\t";echo"test2\t\n";?>
//改动相应文件头就可以输出.doc.xls等文件格式了
英文原文: Silver Moon及 Top 10 PHP Techniques That Will Save You Time and Effort
极分享整理