| | |
Function variables
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
Thread Solved |
I made this function and the problem i have is that the Variavle $Time is not available to the whole program and what i mean by that is the function runs but doesn't set the variable to the whole thing and i have tested the function by doing echos.
Is there a way to set the variable in the function usable out side of the function.
[PHP]
function Times()
{
if (time() < mktime(12,00,00))
{
$Time = 'AM';
}
else
{
$Time = 'PM';
}
}
[/PHP]
Is there a way to set the variable in the function usable out side of the function.
[PHP]
function Times()
{
if (time() < mktime(12,00,00))
{
$Time = 'AM';
}
else
{
$Time = 'PM';
}
}
[/PHP]
•
•
Join Date: Aug 2005
Posts: 80
Reputation:
Solved Threads: 2
•
•
•
•
Originally Posted by ashneet
I made this function and the problem i have is that the Variavle $Time is not available to the whole program and what i mean by that is the function runs but doesn't set the variable to the whole thing and i have tested the function by doing echos.
Is there a way to set the variable in the function usable out side of the function.
[PHP]
function Times()
{
if (time() < mktime(12,00,00))
{
$Time = 'AM';
}
else
{
$Time = 'PM';
}
}
[/PHP]
[PHP]
global $Time;
[/PHP]
-Fredric
![]() |
Similar Threads
- static variables in python (Python)
- passing data from one function to another in C (C)
- function question (C)
- Pointer to function as an argument (C++)
- My logic must be ALL wrong , help on Average. (C)
- struct array and enum problems (C++)
Other Threads in the PHP Forum
- Previous Thread: Need some Help with PHP Craps game!
- Next Thread: Please HELP! 3 Problems with Form
Views: 2453 | Replies: 3
| Thread Tools | Search this Thread |
Tag cloud for PHP
.htaccess access ajax apache api array beginner binary broken cakephp checkbox class cms code cron curl database date datepart directory display download dynamic echo email error file files folder form forms function functions google href htaccess html image include insert integration ip java javascript joomla jquery limit link list login loop mail menu methods mlm mod_rewrite multiple mysql oop parse password paypal pdf php problem query radio random recursion regex remote script search select seo server sessions sms soap source space speed sql structure syntax system table tutorial update updates upload url validation validator variable video web webdesign xml youtube





