Changeset 70ad55b in git
- Timestamp:
- 2014-09-11T17:20:03Z (4 years ago)
- Branches:
- master, trunk
- Children:
- 46d274f
- Parents:
- d2ed93e
- Location:
- devel
- Files:
-
- 4 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/sample.cpp.php
rd2ed93e r70ad55b 27 27 #if PHP_VERSION >= 500 28 28 const CONST_VALUE = 'A constant value'; 29 const file = __FILE__; 30 #if PHP_VERSION >= 530 31 const dir = __DIR__; 32 #endif 29 33 30 34 /** doc */ … … 289 293 $a = $b || $c; 290 294 #if PHP_VERSION >= 530 291 echo $this::CONST_VALUE ;292 echo $object::CONST_VALUE ;293 echo CONST_VALUE ;295 echo $this::CONST_VALUE, PHP_EOL; 296 echo $object::CONST_VALUE, PHP_EOL; 297 echo CONST_VALUE, PHP_EOL; 294 298 $this::method(); 295 299 $object::method(); … … 650 654 } 651 655 652 require ' require.php';653 require_once ' require_once.php';654 include ' include.php';655 include_once ' include_once.php';656 require 'devel/require.php'; 657 require_once 'devel/require_once.php'; 658 include 'devel/include.php'; 659 include_once 'devel/include_once.php'; 656 660 echo __FILE__; 657 661 #if PHP_VERSION >= 530
Note: See TracChangeset
for help on using the changeset viewer.