超越PHP PHP动态 | 经典文章 | CLASS | 相关下载 | 常见问题 | FORUM | WIKI | 在线手册
Site search:    
<packphp_strip_whitespace>
Last updated: Fri, 22 Jun 2007

php_check_syntax

(PHP 5)

php_check_syntax --  Check the PHP syntax of the specified file

Description

bool php_check_syntax ( string file_name [, string &error_message])

The php_check_syntax() function performs a syntax (lint) check on the specified filename testing for scripting errors. This is similar to using php -l from the commandline.

If the error_message parameter is used, it will contain the error message generated by the syntax check. error_message is passed by reference.

The following example shows how this function can be used.

例子 1. php_check_syntax() example

<?php

$error_message
= "";
$filename = "./tests.php";

if(!
php_check_syntax($filename, $error_message)) {
  
printf("Errors were found in the file %s:\n\n%s\n", $filename, $error_message);
} else {
  
printf("The file %s contained no syntax errors.", $filename);
}

?>

The output of the above script could look something like this:

Errors were found in the file ./tests.php:

parse error, unexpected T_STRING in /tmp/tests.php on line 81




add a note add a note User Contributed Notes
php_check_syntax
philip
26-Aug-2004 11:18
This function is dangerous, read the following open bug report before using this function:
* http://bugs.php.net/bug.php?id=27406

<packphp_strip_whitespace>
 Last updated: Fri, 22 Jun 2007
view source | feedback | send page | sitemap | aboutus   
Copyright ® 2002-2003 PHPE.NET. All rights reserved
Last updated:2002-11-22