Suppose I have a php file along these lines:
<?php
function abc() { }
$foo = 'bar';
class SomeClass { }
?>
Is there anything special I have to do to use abc()
and $foo
inside SomeClass
? I'm thinking along the lines of using global
in a function to access variables defined outside the function.
(I'm new to OOP in PHP)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…