Tagged Questions

21
votes
4answers
4k views

What is the difference between a language construct and a “built-in” function in PHP?

I know that include, isset, require, print, echo, and some others are not functions but language constructs. Some of these language constructs need parentheses, others don't. require 'file.php'; ...
17
votes
3answers
990 views

?: operator PHP [closed]

Possible Duplicate: What is the PHP ? : operator called and what does it do? I saw this today in some PHP code. $items = $items ?: $this->_handle->result('next', $this->_result, ...
4
votes
3answers
146 views

In PHP, why wasn't echo implemented as a function? (not echo vs. printf)

I'm just curious. In PHP, why wasn't echo implemented as a function? Why didn't PHP just give us printf and never tell about echo? Please note that: This is not a question about echo vs. printf. I ...
3
votes
1answer
153 views

What is a language construct? How (theoreticaly) it is being implemented in C?

I am familiar with how PHP functions are mapped to functions in C in the C code beneath PHP. I know in C what a function means and what a MACRO() means. I do not understand what is a language ...
3
votes
4answers
124 views

Is there a language construct similar to PHPs list() in C#?

PHP has a language construct list() which provides multiple variables assignment in one statement. $a = 0; $b = 0; list($a, $b) = array(2, 3); // Now $a is equal to 2 and $b is equal to 3. Is there ...
3
votes
3answers
1k views

What is ?: in PHP 5.3? [closed]

Possible Duplicate: What is the PHP ? : operator called and what does it do? From http://twitto.org/ <?PHP require __DIR__.'/c.php'; if (!is_callable($c = @$_GET['c'] ?: function() { ...
2
votes
7answers
264 views

what does this syntax ( page = $page ? $page : 'default' ) in php mean?

i'm new to php. I came across this syntax in wordpress. Can anyone explain to me the last line of that code? $page = $_SERVER['REQUEST_URI']; $page = str_replace("/","",$page); $page = ...
1
vote
4answers
126 views

Calling PHP language constructs using a string

I wanna buffer some content. The way how the content is fetched depends, that's why I added a type parameter to my buffer function to define whether to include or to echo the source. PHP <?php ...
0
votes
3answers
277 views

if statement on one line if poss

I am printing an image using an ID which is generated. however i wanted to do a check to see if this image exists and if it doesnt print no-image.jpg instead... <img ...
0
votes
6answers
239 views

Does there exist a shorter if statement in PHP?

Is it possible to rewrite this to be shorter somehow? if (isset($_POST['pic_action'])){ $pic_action=$_POST['pic_action']; } else { $pic_action=0; } I have seen it somewhere but forgot... :/ ...