vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   problems with array_search() (https://vborg.vbsupport.ru/showthread.php?t=242064)

Antivirus 05-07-2010 07:32 PM

problems with array_search()
 
Ok this is driving me nuts... all common sense tells me this should work however it does not.

PHP Code:

$oldname 'Tiger';
$newname 'TigerXXX';

$options = array(
    [
0] => 'Cat'
    
[1] => 'Cow'
    
[2] => 'Monkey'
    
[3] => 'Snake'
    
[4] => 'Tiger'
    
[5] => 'Zebra'
);

if(
$key array_search($oldname$options))
{
    
$options[$key] = trim(unhtmlspecialchars($newname));
    
asort($options);


By all accounts, 'Tiger' should be replaced with 'TigerXXX'... shouldn't it? This is what I am expecting but it's not working out. Seems that array_search() is returning false.

Anyone know why?

Deceptor 05-13-2010 01:52 PM

You're array isn't exactly a valid array, use:
PHP Code:

$options = array(
    
=> 'Cat',
    
=> 'Cow',
    
=> 'Monkey',
    
=> 'Snake',
    
=> 'Tiger',
    
=> 'Zebra',
); 


Antivirus 05-13-2010 02:35 PM

My bad I didn't properly write the array. It is actually Valid as you show since it's created by using explode().


All times are GMT. The time now is 07:06 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
  • Page Generation 0.01057 seconds
  • Memory Usage 1,718KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete