When I do this:
{some code}
previouslyDeclaredFunction($variable);
{some code}
I can get previouslyDeclaredFunction() to work just fine.
But when I put it inside a new function:
function newFunction($variable){
echo $variable; //see if var passes in properly
{some code}
previouslyDeclaredFunction($variable);
{some code}
}
..then call:
newFunction($variable);
..all of a sudden it stops working EVEN THOUGH I am able to echo() the $variable from within newFunction() just fine, meaning newFunction() was called properly and $variable was passed in properly. Apparently, some stuff inside just won't work unless I remove the whole outer function. PreviouslyDeclaredFunction() is included in the php script and it does get called from within newFunction() but somehow treats $variable differently even though the echo() proves it is being passed in and is the exact same value it was before.
EDIT (ok here comes the REAL code):
$test_tag = "afro";
cacheBuilder($test_tag); //declaration of function
function cacheBuilder($test_tag) {
$images = array();
$tags = array();
$imagetype = 'Hair';
$per_page = 60;
$orderby_view = FALSE;
echo $test_tag; //this works so var is passed in fine
$tags2 = $test_tag;
$tags = explode(',', $test_tag);
if( count($tags) == 1 && strlen($tags[0]) == 0 ) $tags = array();
$tag_url = urlencode($tags2);
$cachename = dirname( __FILE__ ) . '/cache-fp/' . $imagetype . '-' . $per_page . '-' . $page . '-' . ($orderby_view ? 'by_view' : 'by_date') . $tag_url . '.json';
$detailurl = get_option('image_detail_url');
$detailurl .= (strstr($detailurl, '?') === FALSE ? '?' : '&');
$json = array();
$images = array();
$posts = get_pix($imagetype, array('per_page' => $per_page, 'page' => $page, 'tags' => $tags), $orderby_view);
foreach( $posts['attachments'] as $ii => $post ) {
$ta = array();
$meta = array();
$imagesrclight2 = array();
// BWP - Theater mode
$ta['detail_url'] = $detailurl . 'uid=' . $post->post_author . '&img_id=' . $post->ID . '&theater';
$meta = get_post_meta(get_the_ID(), 'image_tag', false);
$ta['image_tags'] = implode(' ', $meta);
$ta['attachment_image'] = wp_get_attachment_image($image->ID, 'thumbnail');
$imagesrclight2 = wp_get_attachment_image_src($image->ID, array(150, 150));
$ta['attachment_image_src'] = rawurlencode($imagesrclight2[0]);
$images[] = $ta;
}
file_put_contents($cachename, json_encode($images));
}
This is a bit complicated, and it's Wordpress, so I hope this isn't totally confusing. While there are no errors, it looks like get_option and/or get_pix are failing inside the outer function. The json produced has no data in it. When I get rid of the outer function, I get json which is populated with data as it should.
previouslyDeclaredFunction? What about{some code}? – Explosion Pills Nov 13 '12 at 21:07$variablesuddenly switch from value to a reference somewhere? – Marc B Nov 13 '12 at 21:12