summaryrefslogtreecommitdiff
path: root/ext/standard/tests/class_object/class_exists_variation_003.phpt
blob: af6d50bef26a1dd811fb341aea21a182ed938ac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
Test class_exists() function : usage variations  - case sensitivity
--FILE--
<?php
/* Prototype  : proto bool class_exists(string classname [, bool autoload])
 * Description: Checks if the class exists
 * Source code: Zend/zend_builtin_functions.c
 * Alias to functions:
 */

class caseSensitivityTest {}
var_dump(class_exists('casesensitivitytest'));

echo "Done"
?>
--EXPECT--
bool(true)
Done