Voting

: one minus zero?
(Example: nine)

The Note You're Voting On

matt-php at DONT-SPAM-ME dot bitdifferent dot com
20 years ago
PHP (4 at least, dunno about 5) stores classnames in lower case, so:

<?PHP

class Foo
{
}

class
Bar extends Foo
{
}

echo
get_parent_class('Bar');

echo
"\n";

echo
get_parent_class('bar');

?>

will output:

foo
foo

<< Back to user notes page

To Top