本文整理匯總了PHP中Pel::setDebug方法的典型用法代碼示例。如果您正苦於以下問題:PHP Pel::setDebug方法的具體用法?PHP Pel::setDebug怎麽用?PHP Pel::setDebug使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Pel
的用法示例。
在下文中一共展示了Pel::setDebug方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: error_reporting
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*/
/* $Id: dump-image.php,v 1.1 2008/11/27 10:02:29 manolis Exp $ */
error_reporting(E_ALL);
/* Make PEL speak the users language, if it is available. */
setlocale(LC_ALL, '');
require_once dirname(__FILE__) . '/../PelDataWindow.php';
require_once dirname(__FILE__) . '/../PelJpeg.php';
require_once dirname(__FILE__) . '/../PelTiff.php';
$prog = array_shift($argv);
$file = '';
while (!empty($argv)) {
switch ($argv[0]) {
case '-d':
Pel::setDebug(true);
break;
case '-s':
Pel::setStrictParsing(true);
break;
default:
$file = $argv[0];
break;
}
array_shift($argv);
}
if (empty($file)) {
printf("Usage: %s [-d] [-s] <filename>\n", $prog);
print "Optional arguments:\n";
print " -d turn debug output on.\n";
print " -s turn strict parsing on (halt on errors).\n";