![]() |
variable not returning in function
I'm sort of copying vBulletin's code that cleans data. If I echo the variable in the function it works but if I return the variable and echo it outside the function it doesn't.
Here is the code. PHP Code:
I just added it to see if it changed anything but it didn't. |
I take it you're learning to code as this 'cleaning code' does absolutely nothing ;). Here's something that will 'clean' PHP's magic quotes...
Code:
<?php - we're doing something (using stripslashes) to do some cleaning. I don't know what you're wanting to clean, but this is at least something. - the clean function will now process the data go_clean returns, putting it all into one big merged array - the clean function returns the merged array Now, it's horribly overcomplex code (there's no need for two functions), but hopefully it's a nice example :). What the "&" does by the way is a bit complex. Basically a normal function treats variables passed into it as new data, and the function could change that data and not affect the data that was passed into the function. If "&" is put before the parameter names then PHP will bind the passed data to the data in the function, so that if you make a change in the function, the actual passed source data will also be changed. |
All times are GMT. The time now is 04:13 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|