Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
4answers
6k views

How to delete object from array inside foreach loop?

I iterate through an array of objects and want to delete one of the objects based on it's 'id' property, but my code doesn't work. foreach($array as $element) { foreach($element as $key => ...
7
votes
5answers
704 views

What is the best method for memory cleanup in PHP? (5.2)

I have two simple questions. What is better/useful for memory cleanup. $var = null; or unset($var); I have one function with one cycle. I am getting (after few minutes) Fatal error: Allowed ...
5
votes
2answers
773 views

How to remove column from child collection

I have a collection in MongoDB called CrawlUser. It has a list called CrawlStatuses, which is a list of CrawlStatus objects. CrawlStatus has a property called LastErrorMessage which I want to remove ...
5
votes
6answers
371 views

Unsetting a variable vs setting to ''

Is it better form to do one of the following? If not, is one of them faster than the other? unset($variable); or to do $variable = '';
4
votes
5answers
5k views

Javascript unset array

How do i unset an array in javascript? i just want to empty it - so it has nothing in it keys or anything
4
votes
4answers
764 views

PHP | Remove element from array with reordering?

how can I remove an element of an array, and reorder afterwards? <?php $c = array( 0=>12,1=>32 ); unset($c[0]); // will return sth. like array( 1=>32 ); ?> How can I do a ...
3
votes
0answers
38 views

References and foreach statement - why is unset required? [closed]

Possible Duplicate: Strange behaviour after loop by reference - Is this a PHP bug? From another post on this site I found that I needed to unset a variable to correct a problem I was ...
3
votes
1answer
72 views

What is the point of unsetting the cookie during a logout from a php session?

I am developing a web application with PHP where a user will be able to have his or her own account, and the session that keeps track of the user is stored in a MySQL database. Now, after searching ...
3
votes
3answers
54 views

View generation and reserved names in PHP

This is a bit of a peculiar one; I don't think this is in fact possible, however the SO community has surprised me time and time again; so here goes. Given in PHP; I have the following snippet: ...
3
votes
5answers
162 views

PHP memory question do you need to unset?

What happens if you do not unset an array before the script is done executing? I am running through thousands of CSV files, parsing data for hundreds of thousands of customers into arrays. It works ...
3
votes
2answers
301 views

GIT & Ruby: How can I unset the GIT_DIR variable from inside a ruby script?

I've written a very simple 'deploy' script running as my post-update hook inside my bare git repo. The variables are as follows live domain = ~/mydomain.com staging domain = ...
3
votes
1answer
372 views

Removing http headers in Apache2

On an Apache2.2.9 hosted site, I would like to remove the headers below. Date Thu, 16 Dec 2010 17:49:45 GMT Server Apache Keep-Alive timeout=15, max=92 Connection Keep-Alive Let me preempt the ...
3
votes
5answers
615 views

unset variable in php

I just read about unset variable through php manual. The php manual says "unset() destroys the specified variables" This def seems perfect until I came across static variable... "If a static ...
3
votes
3answers
570 views

do we need to “unset” variables in TCL?

Is it a requirement of good TCL code? What would happen if we don't use the "unset" keyword in a script? Any ill-effects I should know about? I'm inheriting some legacy code and the errors that come ...
3
votes
6answers
5k views

Unsetting array values in a foreach loop

I have a foreach loop set up to go through my array, check for a certain link, and if it finds it removes that link from the array. My code: foreach($images as $image) { if($image == ...
2
votes
3answers
57 views

Unset many array

I need help with my code. To unset xfer array from array below: if($_SESSION["s"]["user"]["typ"] == 'admin') { $form["tabs"]['dns_soa'] = array ( 'title' => "DNS Zone", ...
2
votes
6answers
97 views

Unset all defined variables from the current function

For example, I have this function: function foo($whaaaat){ $var1 = 'a'; $a = 1; $b = 2; ... // here unset all variables defined above (including arguments) require 'somefile.php'; ...
2
votes
4answers
77 views

Destroy session, but keep one variable set

I am using session variables to control logins and page access. I use variables to control different user groups that a user belongs to, so I have quite a few session variables. I also use a session ...
2
votes
5answers
127 views

PHP - unset in a multidimensional array

I have this array $output which looks like this: Array( [0] => Array( [0] => 1a [1] => 1b [2] => 1c ) [1] => Array( [0] => 2a [1] ...
2
votes
4answers
160 views

PHP Unset Array Value

I am working with a PHP loop, and I had one question regarding how unset affects the array keys. This array uses the standard numeric keys assigned by PHP, 0, 1, 2, 3 etc.... Whenever unset() runs on ...
2
votes
1answer
434 views

MongoDB : Update Modifier semantics of “$unset”

In MongoDB, the update modifier unset works as follows: Consider a Mongo DB Database db with a collection users. Users contain a Document, of the following format: //Document for a user with ...
2
votes
3answers
205 views

Are variables used in PHP functions automatically unset after function execution?

I have a question regarding the variables/arrays used in PHP functions. After executing the function, are all the variables automatically unset? If not, when do they unset exactly, after executing the ...
2
votes
5answers
273 views

PHP array unset

Here code (executed in php 5.3.5 and 5.2.13): $res = array(1, 2, 3); unset($res[0]); for($i = 0; $i < sizeof($res); $i++) { echo $res[$i] . '<br />'; } In results i see <br ...
2
votes
4answers
610 views

Does unsetting array values during iterating save on memory?

This is a simple programming question, coming from my lack of knowledge of how PHP handles array copying and unsetting during a foreach loop. It's like this, I have an array that comes to me from an ...
2
votes
2answers
189 views

unset a element of an array via reference

I can access anywhere inside the multi-dimensional an array via reference method. And I can change the its value. For example: $conf = array( 'type' => 'mysql', 'conf' => array( ...
2
votes
2answers
130 views

PHP and Aptana, unset keyword gets underlined like there is an syntax error

i have this simple loop: for($i=$_POST['position'];$i<count($myFiles);$i++) { $withoutNumber = explode("_",$myFiles[$i]); $noNr = unset($withoutNumber[0]); } my code editor is ...
2
votes
3answers
398 views

unsetting php reference

So I have this function, and it returns me a reference to a particular point to the array passed in. I want to make a call to unset that will then remove the result from the array/reference, but ...
1
vote
3answers
31 views

Partially delete/destroy $_SESSION data? PHP

I am looking for a way to delete only certain amounts of SESSION data that is stored whilst preserving the session data associated with the user being logged on. At the moment I am doing this by ...
1
vote
1answer
43 views

Deleting an item in a foreach loop in PHP

I have a foreach loop where I want to unset an item from an array if certain conditions are met, like this: foreach ($array as $element) { if (conditions) { unset($element); } } But ...
1
vote
1answer
57 views

How to unset global variables.

I have an id of a project and an id of a client that are sessions in php that are passed in JSON format. These are stored in global variables id_p and id_c so I can do multiple inserts and updates ...
1
vote
2answers
66 views

unset session variable halts execution

I have been going crazy over this piece of code and narrowed it down to the unset function. When I call unset on the session variable, PHP doesn't execute anything beyond that point. Can someone ...
1
vote
2answers
72 views

Unset php count

I have this running at the bottom of every site I create. Because it loops do I need to unset the value. Im trying to save memory everywhere I can $tagclouds = explode(",", $tagclouds); for($i = 0; ...
1
vote
1answer
121 views

wp_unregister_GLOBALS() in wordpress

The code below is from wordpress. Here are two things I don't understand: /** * Turn register globals off. * * @access private * @since 2.1.0 * @return null Will return null if register_globals ...
1
vote
4answers
100 views

Unsetting empty array elements

I'm working with $_FILES and sometimes the array has empty array elements due to empty file inputs on my form. I'm trying to unset these elements. I've tried these code snippets: ...
1
vote
4answers
109 views

Check if all of the Enum values are not set

Is it possible with a ONE-Liner (else the normal way...) to check if any of all possible enum states are set? From enum fruits I want to know wether it is unset means no banana, no apple, no melon. ...
1
vote
3answers
106 views

Can not a bash function using “unset -f” when function name is provided as a variable in a loop

I am trying to unset function using be searching for all of them and then looping to unset them with no luck Non loop way works (example where bar_ is created and unset) function bar_ { echo "bar"; ...
1
vote
2answers
136 views

PHP: How to destroy / unset all classes in application

Question is, does it make sense, and how to, free memory and destroy / unset objects? Does exit() kill the app and nothing else has to be done?
1
vote
3answers
126 views

Questions about php unset function

I am having questions about unset How to unset all variables.should i use unset($var1,$var2,$var3,...) or any other easy method exists ? unseting the variables at the end of functions is good ...
1
vote
4answers
79 views

Unset array element based on first character

Im trying to find a way to unset an element if the first character is a certain letter, in this case the letter D... I'm not sure if there is an array function to do something of the sort or if a preg ...
1
vote
2answers
193 views

PHP, delete path from TXT file

I have, problem.. I display images from dir in ARRAY with button 'delete' - action delete.php.. If I click 'delete' file delete.php should delete image from dir and path from TXT file.. Below PHP ...
1
vote
2answers
633 views

Create unset cookie button

I have created a cookie using php and now I need to create a button the user can click to log out. This would be the php code to unset the cookie: unset($_COOKIE['access_token']); But I'm a ...
1
vote
1answer
97 views

Unset group of variables [closed]

Possible Duplicate: Can you unset() many variables at once in PHP? $var1 = $var2 = $tvar3 = null; Is it okay to remove variables like this? Are there better ways to unset couple of ...
1
vote
1answer
113 views

Unset variable causes fatal error?

I have no idea why this is throwing an error - hoping someone can see the issue? $client->set('place', 'home'); $client->placeInfo(); $client->screen($client->response()); ...
1
vote
6answers
380 views

How can I unset a variable in C to allow usage of the same name with different datatype later on?

I want to use the same variable name with a different datatype in C program without casting. I really wanna do that don't ask why. So how can I do that ? And how can I handle the error if this ...
1
vote
1answer
158 views

PHP Session Variables Not Sticking

Here is the simplified version of my code <?php session_start(); if($_GET['page'] == "login") { // process username/password if(login is successful) ...
1
vote
1answer
75 views

Sessions get messed up on external host

The problem sounds like this: The log-in using sessions works perfect on my localhost, but when the EXACTLY same files are uploaded to my host (hostgator), the sessions don't or, or they get messed ...
1
vote
2answers
278 views

unset range of keys in an array

How can i unset a range of keys between say 70 to 80 in an array like this? [63] => Computer Science and Informatics [64] => Dentistry [65] => Development Studies [66] => Drama, Dance and ...
1
vote
2answers
243 views

php removing item with period from array

I have a products array of widgets. Some widgets have the reserved period symbol in their names. The problem occurs when php meets the period, the rest of the widget name is disregarded. How could ...
1
vote
3answers
196 views

Can you unset() many variables at once in PHP?

I have a pretty high traffic social network site, I would like to get into the habit of unsetting large array and mysql object and even some string variables. So is it possible to unset more then 1 ...
0
votes
4answers
43 views

Can't unset session during paypal ipn response

I need to unset my session variables, when PayPal returns IPN. The simplest script is the following <?php session_start(); unset($_SESSION['my_item']); ?> Paypal sends IPN, all works fine, ...

1 2