Tagged Questions
The isset tag has no wiki summary.
46
votes
2answers
34k views
Javascript isset() equivalent
In PHP you can do if(isset($array['foo'])) { ... }. In Javascript you often use if(array.foo) { ... } to do the same, but this is not exactly the same statement. The condition will also evaluate to ...
16
votes
10answers
6k views
Best way to test for a variable's existence in PHP; isset() is clearly broken
From the isset() docs:
isset() will return FALSE if testing a variable that has been set to NULL.
Basically, isset() doesn't check for whether the variable is set at all, but whether it's set to ...
11
votes
2answers
120 views
Test if an argument of a function is set or not in R
I have a function f that takes two parameters (p1 and p2):
If for the parameter p2 no value was passed to the function, the value of p1^2 should be used instead. But how can I find out within the ...
8
votes
3answers
381 views
Why is array_key_exists 1000x slower than isset on referenced arrays?
I have found that array_key_exists is over 1000x slower than isset at check if a key is set in an array reference. Does anyone that has an understanding of how PHP is implemented explain why this is ...
8
votes
5answers
2k views
is ther something like isset of php in javascript/jQuery?
Is there something in javascript/jQuery to check whether variable is set/available or not? In php, we use isset($variable) to check something like this.
thanks.
8
votes
6answers
3k views
How to tell whether a variable has been initialized in C#?
I know this is a dumb question and I guess it must have been asked before. However I am unable to find an answer to my question.
Here is some sample code (which of course does not compile) to outline ...
5
votes
5answers
585 views
Check if value isset and null
I need to check if value is defined as anything, including null. isset treats null values as undefined and returns false. Take the following as an example:
$foo = null;
if(isset($foo)) // returns ...
4
votes
4answers
64 views
PHP creating a new object or use existing one if isset?
Many times i find this redundant:
$found = $repo->findOneByCode($code);
$zone = isset($found) ? $found : new Zone();
Can anyone suggest a better way, similar to (not working):
$zone = ...
4
votes
5answers
211 views
PHP Shorthand for isset form POST value
I am creating a form and am just looking for more efficient ways to do things. What I have so far is:
<p><input type="text" name="transmission" value="" /></p>
<p><input ...
4
votes
1answer
182 views
Using php's magic function inside another function does not work
I want to use magic function __set() and __get() for storing SQL data inside a php5 class and I get some strange issue using them inside a function:
Works:
if (!isset($this->sPrimaryKey) || ...
4
votes
5answers
370 views
Why do I need the isset() function in php?
I am trying to understand the difference between this:
if (isset($_POST['Submit'])) {
//do something
}
and
if ($_POST['Submit']) {
//do something
}
It seems to me that if the ...
4
votes
6answers
1k views
In where shall I use isset() and !empty()
I read somewhere that isset() function is that an empty string tests as TRUE, os isset() is not an effective way to validate text inputs and text boxes from a HTML form.
So you can use empty() to ...
4
votes
5answers
854 views
What's better, isset or not?
Is there any speed difference between
if (isset($_POST['var']))
or
if ($_POST['var'])
And which is better or are they the same?
3
votes
2answers
50 views
PHP isset() returning false when should return true?
Alright... so on my forms, I am setting all the fields to something like this:
name="formdata['name']" and name="formdata['active']".
Of course, that means whatever is entered in those fields should ...
3
votes
2answers
80 views
php isset() on a string variable using a string as index
I have some strange issue with isset() function in PHP.
Let me show... .
<?php
$aTestArray = array(
'index' => array(
'index' => 'Główna'
),
'dodaj' => 'Dodaj ...
3
votes
5answers
103 views
Is there a shortcut for the “isset construct”?
I'm writing quite often this line of code:
$myParam = isset($params['myParam']) ? $params['myParam'] : 'defaultValue';
Typically, it makes the line very long for nested arrays.
Can I make it ...
3
votes
2answers
223 views
How to implement __isset() magic method in PHP?
I'm trying to make functions like empty() and isset() work with data returned by methods.
What I have so far:
abstract class FooBase{
public function __isset($name){
$getter = ...
3
votes
4answers
397 views
Using Isset with native sessions in CodeIgniter
I've read about how CI handles sessions differently than native sessions and feel slightly insecure about storing all the data in a cookie(?), unlike PHP's native session which only stores the session ...
3
votes
7answers
491 views
What is the difference between null and empty?
I am new to the concept of empty and null. Whilst I have endeavoured to understand the difference between them, I am more confused. I came across an article at ...
3
votes
3answers
260 views
PHP associative arrays - how to treat integer as string
I have a simple associative array.
$a = array("a"=>"b", "c"=>"d");
I want to check if the key "1" exists in the array, e.g.
isset($a["1"]);
This string is being treated as an integer, so ...
3
votes
7answers
528 views
PHP - if array isset, do something?
I am posting multiple checkboxes, and putting them into an array - for example: "tags[]"
When posting them, I am imploding them with commas.
If NO tags are checked on the form, and then posted, I ...
3
votes
4answers
128 views
Is there a better solution to check many variables to see if one of them is null in PHP?
On a php file that many variables are received by $_REQUEST[] or $_POST[], and I have to check them in case the value is null with the function isset(), it is quite troublesome. Is there a better ...
2
votes
1answer
82 views
Very strange $_SESSION behaviour
I have a Session which I am using to hold items in a form that are accumulated up by the user until the user wants to proceed to checkout. Its a bit like a Shopping cart where items can be added from ...
2
votes
1answer
73 views
Is there a way to get Netbeans PHP play nicely with CakePHP2 lazy-loading?
In CakePHP 1.3 I usually add model property definitions and PHPDoc to my models and controllers like so:
/**
* @var Vegetable
*/
public $Vegetable;
In Netbeans this gives "Intellisense"-style ...
2
votes
3answers
58 views
isset returns true on a array when its parent value is a string not and array
I encountered a strange issue with one of my arrays. The array looks like this then I do a print_r() on it:
Array
(
[id] => 1688
[pCid] => 1992
[category] => 177
[archive] ...
2
votes
3answers
283 views
Using if(isset($_POST['submit'])) to not display echo when script is open is not working
I have a little problem with my if(isset($_POST['submit'])) code. What I want is some echos and a table to not appear when the script is open but I do want it to show when the submit button for the ...
2
votes
2answers
66 views
PHP: How to know if a variable exist, event if his value is NULL?
$a = NULL;
$c = 1;
var_dump(isset($a)); // bool(false)
var_dump(isset($b)); // bool(false)
var_dump(isset($c)); // bool(true)
How can I distinguish $a that exists but his NULL from the "really ...
2
votes
3answers
141 views
Is $_SERVER['SERVER_ADDR'] always set?
Is $_SERVER['SERVER_ADDR'] always set?
Should I check with isset() or is that unnecessary?
I need to get the IP of the site so I can find out if it's 127.0.0.1/localhost
2
votes
2answers
489 views
PHP object isset and/or empty
Is there a way to check if an object has any fields? For example, I have a soap server I am querying using a soap client and if I call a get method, I am either returned an object containing fields ...
2
votes
3answers
318 views
PHP reading 'get' variable that may or may not have been set
Simply put, if you try to read the value of a get variable, what happens if said variable had not be put into the URL. Example: you request the page test.php, in that file it tries to read the value ...
2
votes
3answers
789 views
PHP isset($this) and using the same object method in a static and object context
I'm working on a class which needs to be accessible via static function calls as well as object methods. One thing I have found is that I'm duplicating logic across multiple functions.
Simplified ...
2
votes
4answers
151 views
Will isset() trigger __get and why?
class a
{
function __get($property){...}
}
$obj = new a();
var_dump(isset($obj->newproperty));
Seems the answer is nope but why?
2
votes
5answers
2k views
Best way to test if array key exists [php]
Imagine that I want to create an array from another array like this:
$array = array('bla' => $array2['bla'],
'bla2' => $array2['bla2'],
'foo' => ...
1
vote
4answers
47 views
PHP if multiple variables exist
So i'm having a bit of a problem with having my PHP run a command if multiple variables exist. I made a simple version for people to see what i'm trying to fix easier. Thanks in advance to anyone ...
1
vote
3answers
53 views
Error when trying to fill in registration fields
I'm trying to create a login and registration system with PHP for a school assignment, but it's currently not really working...
The problem is it generates an error saying the fields are empty, even ...
1
vote
3answers
85 views
Not understanding these $_POST, arrays, and validation techniques in PHP
I'm learning by way of tutorials, and the instructor used a validation routine that I'm confused about.
On the form page, he has input fields with the following names:
menu_name
position
visible
...
1
vote
3answers
54 views
Should I declare and check if variables exist in PHP?
I've noticed on XAMPP that strict error reporting is on and I get undefined index errors now. I just have two small questions (I'm still learning here):
I know you don't have to declare variables in ...
1
vote
3answers
38 views
Php create an accessed object when its null (like __isset())
I understand that __isset() is for a non exists property. But I want it on an exists property which is null.
By default it could be good:
class myClass
{
public function __isset($name)
{
// ...
1
vote
2answers
61 views
checking if there is json obejct in ajax reply from server without crashing javascript
UPDATE
Here Ajax receives some responseimage from the server
success: function(responseimage)
{
.....
}
This gets object and puts it into result variable.
result = ...
1
vote
2answers
39 views
PHP:isset() returns false for object's dynamic properties
I have a heirarchy of classes that get initialized from a database. I am using __get() and __set() with an array in a common Item base class to support different numbers of properties. One class ...
1
vote
8answers
129 views
Why does in_array() not work on $_POST?
I'm trying to check that user's submitted data, from $_POST, has at least the same elements that my passed array has. I'm doing it because I will use those elements later by calling $_POST['element'] ...
1
vote
5answers
72 views
Check wheter $_POST is set with a self-defined function?
I'm working on a function to check wheter a $_POST is set or not.
The following works fine:
if (isset($_POST['einfo'])) {
$einfo = $_POST['einfo'];
} else { $einfo = NULL; }
echo $einfo;
...
1
vote
2answers
113 views
Using HTML Form Within PHP ISSET function
I have a quotation form where the user fills out the boxes, clicks submit and the isset function works to see if its set before returning a quote.
<?php
if (isset($_POST['submit'])) {
$total ...
1
vote
2answers
73 views
Deep Javascript check if undefined without TypeError
I'm tired to write something like
if (
typeof Foo != 'undefined' &&
typeof Foo.bar != 'undefined' &&
typeof Foo.bar.baz != 'undefined' &&
Foo.bar.baz == 'qux'
) {...}
...
1
vote
2answers
84 views
PHP Form checking if submit has been pressed
I've been going insane the past 3 hours with this issue. I had this completely working.....and it actually still is, but on another page. The only issue is that on a different page it stops working. ...
1
vote
6answers
122 views
In php using @ instead of isset
In some conditions, may I use an @ character instead of using the longer isset() function?
If not, why not?
I like to use this because in a lot cases I can save several quotation marks, brackets and ...
1
vote
1answer
86 views
php how to attach a if statement to a button?
I have a I statement;
if($game_set->issue_challenge()){echo "test";}else {"test failed";}
and I have a button:
<input type="submit" name="submit" id="submit" value="Submit" />
I want to ...
1
vote
8answers
293 views
What is the PHP shorthand for: print var if var exist
We've all encountered it before, needing to print a variable in an input field but not knowing for sure whether the var is set, like this. Basically this is to avoid an e_warning.
<input ...
1
vote
2answers
217 views
isset on static class attributes
class A {
public static $foo = 42;
}
$class = 'A';
$attribute = 'foo';
var_dump(isset($class::$attribute)); //gives bool(false)
How can i checkt, of this static attribute exists in this class?
...
1
vote
4answers
1k views
if(!isset($_POST[“user”]) ignored and returns Undefined Index
When I output this code,
23 if(!isset($_POST['user'])) {
24 $user = $_POST['user'];
25 $user2 = $user;
26 $pass[0] = $_POST['password'];
27 $pass[1] = $_POST['password2'];
28 ...