Bonjour,
Pouvez vous m'aider avec ce bout de code:
J'ai l'erreur suivante:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 <?php $strTest = 'Testing access of a variable outside the class of the calling method'; echo $strTest; class Test { public function useVar() { echo $strTest; } } $tst = new Test(); $tst->useVar(); ?>
PHP Notice: Undefined variable: strTest in C:\xampp\htdocs\projects\phpexamples\test.php on line 9
Merci
Partager