Skip to main content

Home/ PHP Programming/ Group items matching "of" in title, tags, annotations or url

Group items matching
in title, tags, annotations or url

Sort By: Relevance | Date Filter: All | Bookmarks | Topics Simple Middle
7More

PHP: rfc:isset_ternary - 0 views

  • The short ternary operator, ?: provides a way to do this much more conveniently: $_GET['mykey'] ?: "". However, this is not good practise, as if the value does not exist it will raise an E_NOTICE.
  • The coalesce, or ??, operator is added, which returns the result of its first operand if it exists and is not NULL, or else its second operand.
  • chained
  • ...3 more annotations...
  • precedence relative to the ternary operator and the boolean or operator
  • short-circuiting operator
  • PHP 7
  •  
    In PHP7 you can use $foo = $_GET['x'] ?? 'default_content' which raises no notices if $_GET['x'] is not set
1More

Zebra_Mptt, a PHP class providing an implementation of the modified preorder tree trave... - 0 views

  •  
    MPTT is a fast algorithm for storing hierarchical data
7More

Changelog | symfony | Web PHP Framework - 0 views

  • Updating Doctrine to 1.0.12
  • fixed form field render method so widget schema id format is applied
  • fixed missing div in admin generator used in css styles
  • ...4 more annotations...
  • upgraded lime for symfony 1.2.x
  • fixed PHPDoc
  • fixed doctrine form filter when the table method returns a query with a different root alias
  • Fixed case-insensitive check of sf_method routing requirement
2More

Pixelco Blog » Blog Archive » 31 Herramientas gratis - 0 views

  • 9:36 AMmeeblogbeta volunteers wanted! - With so many languages, browsers, and operating systems, it’s hard for us to predict all the ways which people use meebo. We have some stats (like the smiley is the most popular emoticon and a lot of
  •  
    Herramientas para desarrollo web.
2More

Open Source PHP - 0 views

  •  
    Gallery of the Best Open Source PHP Projects
  •  
    Galería de proyectos PHP
4More

Blog | Calling the community | symfony | Web PHP Framework - 0 views

  • I want to present to you the role I see myself playing in the symfony community
  • I would like to form a group of people who are interested in helping out.
  • I have created a new mailinglist just for this purpose: symfony-community.
  • ...1 more annotation...
  • So please feel free to join the list.
9More

Learning JavaScript from PHP - a Comparison | Lullabot - 0 views

  • In PHP, all variables are local in scope unless declared as global. JavaScript is opposite, and all variables are global unless declared with the var keyword.
  • Both PHP and JavaScript are loosely typed
  • JavaScript is a bit mixed concerning undeclared variables, if you attempt to modify or compare with an undeclared variable, the script will break entirely, but you can check the variable status using typeof() or in conditional statements containing only that variable.
  • ...6 more annotations...
  • JavaScript only recognizes the keyword true in all lowercase. PHP accepts both uppercase and lowercase
  • PHP is not case-sensitive in function or class declarations, but JavaScript is case sensitive for these also.
  • The key difference between PHP and JavaScript is that JavaScript does not have associative arrays.
  • JSON strings having become very popular as a faster alternative to XML, and can be read and created with the PHP functions json_encode() and json_decode().
  • Let's take one more look at defining an object in JavaScript and see how it can be used to compensate for the lack of associative arrays in JavaScript.
  • // Note that variables should always be// prefixed with "var" to define a local scope.for (var n = 0; n < 10; n++) {  alert(n);}
4More

Secure File Upload with PHP - 0 views

  •   $ext = substr($filename, strrpos($filename, '.') + 1);
  • ($ext == "jpg")
  • $_FILES["uploaded_file"]["type"] the MIME type of the uploaded file (if the browser provided the type)
1More

Rephlux - A continuous integration tool for PHP - 0 views

  • Rephlux is a PHP based tool for running a continuous testing/build process on your project and taking action based on the outcome of your tests. It is inspired by the Java based CruiseControl[1]. It is free software, licensed under the GNU GPL (see the file COPYING for details).

SEO Services that Exceeds Expectations - 1 views

started by Ace Dee on 21 Feb 11 no follow-up yet
1More

Steps to Schedule a Reboot for your Windows Server - 1 views

  •  
    Rebooting is an essential task which should be performed every month to install updates and patch the kernel. Rebooting your server will help you to increase performance of your server. Let's see how to use the command line interface to to schedule a reboot for your windows server.

Instant Fix Slow Computer Solutions - 0 views

started by paul silmonet on 08 Jun 11 no follow-up yet

Getting Used to Help and Support - 1 views

started by shayne mosley on 07 Jun 11 no follow-up yet

Two Thumbs Up For Computer Assistance Services - 2 views

started by seth kutcher on 06 Jun 11 no follow-up yet
« First ‹ Previous 181 - 200 of 225 Next › Last »
Showing 20 items per page