Home » Forum
NoNumber!

Joomla!® Websites & Extensions
development  -  support  -  consultancy

I try to respond within 48 hours (excluding weekends).
If I haven't responded by then, feel free to post a reminder or bug me via email.

My last reply was: 15 Hours, 21 Minutes ago.

Welcome, Guest
Please Login or Register.    Lost Password?

Global variables
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Global variables
#7614
Global variables 1 Year, 11 Months ago  
Hi,
Am trying to get global variables working (sourcerer 2.4.2 - excellent btw - thanks!).
Even a simple;

{source}
<?php
$a = 1; /* global scope */
function test()
{
    global $a;
    echo "test=".$a."END<hr>"; /* reference to local scope variable */
}
test();
?>
{/source}

only displays "test=END" for me...
If I run the same from a dos window directly with php, "test=1END" works.

Any ideas why? Is it joomla or sourcerer or me?

many thanks for any help
pn
Phil
Posts: 2
User OfflineClick here to see the profile of this user
The administrator has disabled public write access.
 
#7620
Re: Global variables 1 Year, 11 Months ago  
You have to define the variable to be global from the start.
Try this:
{source}
<?php
global $a; /* global scope */
$a = 1;
function test()
{
    global $a;
    echo "test=".$a."END<hr>"; /* reference to local scope variable */
}
test();
?>
{/source}
Peter van Westen
Admin
Posts: 9165
User OfflineClick here to see the profile of this user
The administrator has disabled public write access.
Need to contact me directly? Go to my contact page.
If you use any NoNumber! extensions, please post a rating and a review at the Joomla! Extensions Directory.
Are you happy with the support? Please consider buying a License Code to help me to continue development and support.
 
#7636
Re:Global variables 1 Year, 11 Months ago  
... thank you v. much... works a treat!
(& so much for that example I used from the php manual)
cheers
pn
Phil
Posts: 2
User OfflineClick here to see the profile of this user
The administrator has disabled public write access.
 
Go to topPage: 1
Moderators: Peter van Westen
hosting joomla
MaxCDN | Content Delivery Network | Accelerate your site to the max
Open Source Training | Online Joomla! Training and Support