4. 参考

WBOY
Release: 2016-06-13 12:22:45
Original
954 people have browsed it

Atitit. 脚本语言的断点单步调试的设计与实现 attialx 总结 php 参照java

Atitit. 脚本语言的断点单步调试的设计与实现attialx总结php参照java

1. 断点的实现:手动断点 die和exit是等价的 1

2. 变量表的实现 1

3. print_r( $vars_list ); 1

4. print_rvar_dump都能输出数组和对象,1

5. 参考 2

1. 断点的实现:手动断点die和exit是等价的

2. 变量表的实现

$vars_list= array();

放入变量表ui。。。

global $vars_list;

$vars_list["tab"]=$table;

显示变量表

print_r( $vars_list );

作者:: 老哇的爪子 Attilax 艾龙, EMAIL:[email protected]

转载请注明来源: http://blog.csdn.net/attilax

3. print_rvar_dump都能输出数组和对象,

但print_r对布尔型的输出不太明显;var_dump输出比较详细,一般调试时用得多。

4. 参考

php断点调试的几种方法讨论- PHP编程_卡卡网.htm

版权声明:本文为博主原创文章,未经博主允许不得转载。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!