TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 06-27-2009, 08:07 PM   #1 (permalink)
The Wanderer
 
Join Date: Jun 2009
Posts: 20
Thanks: 2
tech is on a distinguished road
Default help me in my code

hi friend..
I wrote one code in php where i wanted to replacing this element with one of its siblings.but in this line
$index=$this->parent->contents->array_search($replaceWith,$parent->contents);
I have facing problem in array_search,means how to use array_search so my function will work proper.below is my function please correct it as soon as possible.

<?php
function replaceWith($replaceWith)
{
//store old parent

$oldParent=$this->parent;
//get own index in parents contents array
$myIndex=$parent->contents->array_search($this);
if ( $replaceWith->parent==$this->parent)
{
//We're replacing this element with one of its siblings
$index=$this->parent->contents->array_search($replaceWith,$parent->contents);
if ($index && $index < $myIndex)
{
//Furthermore, it comes before this element. That
// means that when we extract it, the index of this
//element will change
$myIndex=$myIndex-1;
}
$oldParent->insert($myIndex,$replaceWith);
}
}
?>
thanks.
tech is offline  
Reply With Quote
Old 06-27-2009, 08:35 PM   #2 (permalink)
Moderateur
RegEx Guru PHP Guru Top Contributor Advanced Programmer 
 
Salathe's Avatar
 
Join Date: Apr 2007
Posts: 1,234
Thanks: 3
Salathe is on a distinguished road
Default

You appear to have trouble understanding basic PHP syntax. You cannot just call an "array_search" method like that, it's a global function and must be called as such. Also in PHP, functions are entirely different to object methods so there is no $this available and certainly no properties or methods on $this.
__________________
salathe@php.net
Salathe is offline  
Reply With Quote
Old 06-27-2009, 08:46 PM   #3 (permalink)
The Wanderer
 
Join Date: Jun 2009
Posts: 20
Thanks: 2
tech is on a distinguished road
Default

thanks mr. salathe..ya it's true i am facing problem to use php syntax .that the region I am doing a basic mistake..so please help me to understand it..and tell me how to replace "this" (nothing but current element) element with one of its siblings
once again thanks for guiding me.
tech is offline  
Reply With Quote
Old 06-27-2009, 08:50 PM   #4 (permalink)
Moderateur
RegEx Guru PHP Guru Top Contributor Advanced Programmer 
 
Salathe's Avatar
 
Join Date: Apr 2007
Posts: 1,234
Thanks: 3
Salathe is on a distinguished road
Default

Are you trying to do this for objects, arrays or... what?
__________________
salathe@php.net
Salathe is offline  
Reply With Quote
Old 06-27-2009, 09:02 PM   #5 (permalink)
The Wanderer
 
Join Date: Jun 2009
Posts: 20
Thanks: 2
tech is on a distinguished road
Default

with array..
tech is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Tips to Improve Your Coding and Projects Village Idiot Tips & Tricks 42 11-08-2009 07:53 PM
Prettifying Pasted Code on TalkPHP Wildhoney The Lounge 12 07-17-2009 04:56 PM
Game: Let's Develop Something Crazy! Wildhoney The Lounge 25 05-23-2009 10:18 PM
Snipply.com - Code snippet website codyodell Show Off 27 04-13-2008 03:09 PM
Writing Clean Code Village Idiot Tips & Tricks 5 01-09-2008 05:37 PM


All times are GMT. The time now is 01:08 PM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design