Skip to content

Instantly share code, notes, and snippets.

<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-scroll-header-panel/core-scroll-header-panel.html">
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<link rel="import" href="../paper-slider/paper-slider.html">
<link rel="import" href="../paper-toast/paper-toast.html">
<link rel="import" href="../paper-toggle-button/paper-toggle-button.html">
<polymer-element name="my-element">
PHP_INI_USER Entry can be set in user scripts or in the Windows registry. Since PHP 5.3, entry can be set in .user.ini
PHP_INI_PERDIR Entry can be set in php.ini, .htaccess, httpd.conf or .user.ini (since PHP 5.3)
PHP_INI_SYSTEM Entry can be set in php.ini or httpd.conf
PHP_INI_ALL Entry can be set anywhere
<?php
ini_set("upload_max_filesize", "50M");
ini_set("post_max_size", "50M");
ini_set("memory_limit", "500M");
?>
php_value upload_max_filesize 50M
php_value post_max_size 50M
php_value memory_limit 500M
var a = 10;
function someFunction(passedValue) {
var a = passedValue || a;
// Do something with a
}
someFunction();
var a = "badf";
alert('test');
function() {
var b = a;
}