f5569e4755
I think this dir shouldn't have anything non-necessary in the root.
25 linhas
436 B
PHP
25 linhas
436 B
PHP
<?php
|
|
|
|
// Warning: line numbers are sensitive, do not change
|
|
|
|
function foo($x) {
|
|
$y = $x.'_suffix';
|
|
error_log($y);
|
|
}
|
|
|
|
class cls {
|
|
public function pubObj($x) {
|
|
error_log("pubObj:".$x);
|
|
}
|
|
public static function pubCls($x) {
|
|
error_log("pubCls:".$x);
|
|
}
|
|
public function pubHardBreak($x) {
|
|
error_log("pubHardBreak:".$x);
|
|
hphpd_break();
|
|
error_log("pubHardBreak:done");
|
|
}
|
|
}
|
|
|
|
error_log('break_t.php loaded');
|