PSD-Tutorials.de
Forum für Design, Fotografie & Bildbearbeitung
Tutkit
Agentur
Hilfe
Kontakt
Start
Forum
Aktuelles
Besonderer Inhalt
Foren durchsuchen
Tutorials
News
Anmelden
Kostenlos registrieren
Aktuelles
Suche
Suche
Nur Titel durchsuchen
Von:
Menü
Anmelden
Kostenlos registrieren
App installieren
Installieren
JavaScript ist deaktiviert. Für eine bessere Darstellung aktiviere bitte JavaScript in deinem Browser, bevor du fortfährst.
Du verwendest einen veralteten Browser. Es ist möglich, dass diese oder andere Websites nicht korrekt angezeigt werden.
Du solltest ein Upgrade durchführen oder einen
alternativen Browser
verwenden.
Antworten auf deine Fragen:
Neues Thema erstellen
Start
Forum
Sonstiges
Webdesign, Webentwicklung & Programmierung
PHP, Javascript, jQuery, Ajax, nodeJS, MySQL...
Post seiten leer? Wieso warum?!!
Beitrag
<blockquote data-quote="Metty" data-source="post: 2687139" data-attributes="member: 571615"><p>[PHP]<?php</p><p></p><p>/*</p><p>* This file is part of Twig.</p><p>*</p><p>* (c) Fabien Potencier</p><p>*</p><p>* For the full copyright and license information, please view the LICENSE</p><p>* file that was distributed with this source code.</p><p>*/</p><p></p><p>/**</p><p>* Stores the Twig configuration.</p><p>*</p><p>* @author Fabien Potencier <fabien@symfony.com></p><p>*/</p><p>class Twig_Environment</p><p>{</p><p> const VERSION = '2.3.2';</p><p> const VERSION_ID = 20302;</p><p> const MAJOR_VERSION = 2;</p><p> const MINOR_VERSION = 3;</p><p> const RELEASE_VERSION = 2;</p><p> const EXTRA_VERSION = '';</p><p></p><p> private $charset;</p><p> private $loader;</p><p> private $debug;</p><p> private $autoReload;</p><p> private $cache;</p><p> private $lexer;</p><p> private $parser;</p><p> private $compiler;</p><p> private $baseTemplateClass;</p><p> private $globals = array();</p><p> private $resolvedGlobals;</p><p> private $loadedTemplates;</p><p> private $strictVariables;</p><p> private $templateClassPrefix = '__TwigTemplate_';</p><p> private $originalCache;</p><p> private $extensionSet;</p><p> private $runtimeLoaders = array();</p><p> private $runtimes = array();</p><p> private $optionsHash;</p><p></p><p> /**</p><p> * Constructor.</p><p> *</p><p> * Available options:</p><p> *</p><p> * * debug: When set to true, it automatically set "auto_reload" to true as</p><p> * well (default to false).</p><p> *</p><p> * * charset: The charset used by the templates (default to UTF-8).</p><p> *</p><p> * * base_template_class: The base template class to use for generated</p><p> * templates (default to Twig_Template).</p><p> *</p><p> * * cache: An absolute path where to store the compiled templates,</p><p> * a Twig_Cache_Interface implementation,</p><p> * or false to disable compilation cache (default).</p><p> *</p><p> * * auto_reload: Whether to reload the template if the original source changed.</p><p> * If you don't provide the auto_reload option, it will be</p><p> * determined automatically based on the debug value.</p><p> *</p><p> * * strict_variables: Whether to ignore invalid variables in templates</p><p> * (default to false).</p><p> *</p><p> * * autoescape: Whether to enable auto-escaping (default to html):</p><p> * * false: disable auto-escaping</p><p> * * html, js: set the autoescaping to one of the supported strategies</p><p> * * name: set the autoescaping strategy based on the template name extension</p><p> * * PHP callback: a PHP callback that returns an escaping strategy based on the template "name"</p><p> *</p><p> * * optimizations: A flag that indicates which optimizations to apply</p><p> * (default to -1 which means that all optimizations are enabled;</p><p> * set it to 0 to disable).</p><p> *</p><p> * @param Twig_LoaderInterface $loader</p><p> * @param array $options An array of options</p><p> */</p><p> public function __construct(Twig_LoaderInterface $loader, $options = array())</p><p> {</p><p> $this->setLoader($loader);</p><p></p><p> $options = array_merge(array(</p><p> 'debug' => false,</p><p> 'charset' => 'UTF-8',</p><p> 'base_template_class' => 'Twig_Template',</p><p> 'strict_variables' => false,</p><p> 'autoescape' => 'html',</p><p> 'cache' => false,</p><p> 'auto_reload' => null,</p><p> 'optimizations' => -1,</p><p> ), $options);</p><p></p><p> $this->debug = (bool) $options['debug'];</p><p> $this->setCharset($options['charset']);</p><p> $this->baseTemplateClass = $options['base_template_class'];</p><p> $this->autoReload = null === $options['auto_reload'] ? $this->debug : (bool) $options['auto_reload'];</p><p> $this->strictVariables = (bool) $options['strict_variables'];</p><p> $this->setCache($options['cache']);</p><p> $this->extensionSet = new Twig_ExtensionSet();</p><p></p><p> $this->addExtension(new Twig_Extension_Core());</p><p> $this->addExtension(new Twig_Extension_Escaper($options['autoescape']));</p><p> $this->addExtension(new Twig_Extension_Optimizer($options['optimizations']));</p><p> }</p><p></p><p> /**</p><p> * Gets the base template class for compiled templates.</p><p> *</p><p> * @return string The base template class name</p><p> */</p><p> public function getBaseTemplateClass()</p><p> {</p><p> return $this->baseTemplateClass;</p><p> }</p><p></p><p> /**</p><p> * Sets the base template class for compiled templates.</p><p> *</p><p> * @param string $class The base template class name</p><p> */</p><p> public function setBaseTemplateClass($class)</p><p> {</p><p> $this->baseTemplateClass = $class;</p><p> $this->updateOptionsHash();</p><p> }</p><p></p><p> /**</p><p> * Enables debugging mode.</p><p> */</p><p> public function enableDebug()</p><p> {</p><p> $this->debug = true;</p><p> $this->updateOptionsHash();</p><p> }</p><p></p><p> /**</p><p> * Disables debugging mode.</p><p> */</p><p> public function disableDebug()</p><p> {</p><p> $this->debug = false;</p><p> $this->updateOptionsHash();</p><p> }</p><p></p><p> /**</p><p> * Checks if debug mode is enabled.</p><p> *</p><p> * @return bool true if debug mode is enabled, false otherwise</p><p> */</p><p> public function isDebug()</p><p> {</p><p> return $this->debug;</p><p> }</p><p></p><p> /**</p><p> * Enables the auto_reload option.</p><p> */</p><p> public function enableAutoReload()</p><p> {</p><p> $this->autoReload = true;</p><p> }</p><p></p><p> /**</p><p> * Disables the auto_reload option.</p><p> */</p><p> public function disableAutoReload()</p><p> {</p><p> $this->autoReload = false;</p><p> }</p><p></p><p> /**</p><p> * Checks if the auto_reload option is enabled.</p><p> *</p><p> * @return bool true if auto_reload is enabled, false otherwise</p><p> */</p><p> public function isAutoReload()</p><p> {</p><p> return $this->autoReload;</p><p> }</p><p></p><p> /**</p><p> * Enables the strict_variables option.</p><p> */</p><p> public function enableStrictVariables()</p><p> {</p><p> $this->strictVariables = true;</p><p> $this->updateOptionsHash();</p><p> }</p><p></p><p> /**</p><p> * Disables the strict_variables option.</p><p> */</p><p> public function disableStrictVariables()</p><p> {</p><p> $this->strictVariables = false;</p><p> $this->updateOptionsHash();</p><p> }</p><p></p><p> /**</p><p> * Checks if the strict_variables option is enabled.</p><p> *</p><p> * @return bool true if strict_variables is enabled, false otherwise</p><p> */</p><p> public function isStrictVariables()</p><p> {</p><p> return $this->strictVariables;</p><p> }</p><p></p><p> /**</p><p> * Gets the current cache implementation.</p><p> *</p><p> * @param bool $original Whether to return the original cache option or the real cache instance</p><p> *</p><p> * @return Twig_CacheInterface|string|false A Twig_CacheInterface implementation,</p><p> * an absolute path to the compiled templates,</p><p> * or false to disable cache</p><p> */</p><p> public function getCache($original = true)</p><p> {</p><p> return $original ? $this->originalCache : $this->cache;</p><p> }</p><p></p><p> /**</p><p> * Sets the current cache implementation.</p><p> *</p><p> * @param Twig_CacheInterface|string|false $cache A Twig_CacheInterface implementation,</p><p> * an absolute path to the compiled templates,</p><p> * or false to disable cache</p><p> */</p><p> public function setCache($cache)</p><p> {</p><p> if (is_string($cache)) {</p><p> $this->originalCache = $cache;</p><p> $this->cache = new Twig_Cache_Filesystem($cache);</p><p> } elseif (false === $cache) {</p><p> $this->originalCache = $cache;</p><p> $this->cache = new Twig_Cache_Null();</p><p> } elseif ($cache instanceof Twig_CacheInterface) {</p><p> $this->originalCache = $this->cache = $cache;</p><p> } else {</p><p> throw new LogicException(sprintf('Cache can only be a string, false, or a Twig_CacheInterface implementation.'));</p><p> }</p><p> }</p><p></p><p> /**</p><p> * Gets the template class associated with the given string.</p><p> *</p><p> * The generated template class is based on the following parameters:</p><p> *</p><p> * * The cache key for the given template;</p><p> * * The currently enabled extensions;</p><p> * * Whether the Twig C extension is available or not;</p><p> * * PHP version;</p><p> * * Twig version;</p><p> * * Options with what environment was created.</p><p> *</p><p> * @param string $name The name for which to calculate the template class name</p><p> * @param int|null $index The index if it is an embedded template</p><p> *</p><p> * @return string The template class name</p><p> */</p><p> public function getTemplateClass($name, $index = null)</p><p> {</p><p> $key = $this->getLoader()->getCacheKey($name).$this->optionsHash;</p><p></p><p> return $this->templateClassPrefix.hash('sha256', $key).(null === $index ? '' : '_'.$index);</p><p> }</p><p></p><p> /**</p><p> * Renders a template.</p><p> *</p><p> * @param string $name The template name</p><p> * @param array $context An array of parameters to pass to the template</p><p> *</p><p> * @return string The rendered template</p><p> *</p><p> * @throws Twig_Error_Loader When the template cannot be found</p><p> * @throws Twig_Error_Syntax When an error occurred during compilation</p><p> * @throws Twig_Error_Runtime When an error occurred during rendering</p><p> */</p><p> public function render($name, array $context = array())</p><p> {</p><p> return $this->loadTemplate($name)->render($context);</p><p> }</p><p></p><p> /**</p><p> * Displays a template.</p><p> *</p><p> * @param string $name The template name</p><p> * @param array $context An array of parameters to pass to the template</p><p> *</p><p> * @throws Twig_Error_Loader When the template cannot be found</p><p> * @throws Twig_Error_Syntax When an error occurred during compilation</p><p> * @throws Twig_Error_Runtime When an error occurred during rendering</p><p> */</p><p> public function display($name, array $context = array())</p><p> {</p><p> $this->loadTemplate($name)->display($context);</p><p> }</p><p></p><p> /**</p><p> * Loads a template.</p><p> *</p><p> * @param string|Twig_TemplateWrapper|Twig_Template $name The template name</p><p> *</p><p> * @return Twig_TemplateWrapper</p><p> */</p><p> public function load($name)</p><p> {</p><p> if ($name instanceof Twig_TemplateWrapper) {</p><p> return $name;</p><p> }</p><p></p><p> if ($name instanceof Twig_Template) {</p><p> return new Twig_TemplateWrapper($this, $name);</p><p> }</p><p></p><p> return new Twig_TemplateWrapper($this, $this->loadTemplate($name));</p><p> }</p><p></p><p> /**</p><p> * Loads a template internal representation.</p><p> *</p><p> * This method is for internal use only and should never be called</p><p> * directly.</p><p> *</p><p> * @param string $name The template name</p><p> * @param int $index The index if it is an embedded template</p><p> *</p><p> * @return Twig_Template A template instance representing the given template name</p><p> *</p><p> * @throws Twig_Error_Loader When the template cannot be found</p><p> * @throws Twig_Error_Runtime When a previously generated cache is corrupted</p><p> * @throws Twig_Error_Syntax When an error occurred during compilation</p><p> *</p><p> * @internal</p><p> */</p><p> public function loadTemplate($name, $index = null)</p><p> {</p><p> $cls = $mainCls = $this->getTemplateClass($name);</p><p> if (null !== $index) {</p><p> $cls .= '_'.$index;</p><p> }</p><p></p><p> if (isset($this->loadedTemplates[$cls])) {</p><p> return $this->loadedTemplates[$cls];</p><p> }</p><p></p><p> if (!class_exists($cls, false)) {</p><p> $key = $this->cache->generateKey($name, $mainCls);</p><p></p><p> if (!$this->isAutoReload() || $this->isTemplateFresh($name, $this->cache->getTimestamp($key))) {</p><p> $this->cache->load($key);</p><p> }</p><p></p><p> if (!class_exists($cls, false)) {</p><p> $source = $this->getLoader()->getSourceContext($name);</p><p> $content = $this->compileSource($source);</p><p> $this->cache->write($key, $content);</p><p> $this->cache->load($key);</p><p></p><p> if (!class_exists($mainCls, false)) {</p><p> /* Last line of defense if either $this->bcWriteCacheFile was used,</p><p> * $this->cache is implemented as a no-op or we have a race condition</p><p> * where the cache was cleared between the above calls to write to and load from</p><p> * the cache.</p><p> */</p><p> eval('?>'.$content);</p><p> }</p><p></p><p> if (!class_exists($cls, false)) {</p><p> throw new Twig_Error_Runtime(sprintf('Failed to load Twig template "%s", index "%s": cache is corrupted.', $name, $index), -1, $source);</p><p> }</p><p> }</p><p> }</p><p></p><p> // to be removed in 3.0</p><p> $this->extensionSet->initRuntime($this);</p><p></p><p> return $this->loadedTemplates[$cls] = new $cls($this);</p><p> }</p><p></p><p> /**</p><p> * Creates a template from source.</p><p> *</p><p> * This method should not be used as a generic way to load templates.</p><p> *</p><p> * @param string $template The template name</p><p> *</p><p> * @return Twig_Template A template instance representing the given template name</p><p> *</p><p> * @throws Twig_Error_Loader When the template cannot be found</p><p> * @throws Twig_Error_Syntax When an error occurred during compilation</p><p> */</p><p> public function createTemplate($template)</p><p> {</p><p> $name = sprintf('__string_template__%s', hash('sha256', uniqid(mt_rand(), true), false));</p><p></p><p> $loader = new Twig_Loader_Chain(array(</p><p> new Twig_Loader_Array(array($name => $template)),</p><p> $current = $this->getLoader(),</p><p> ));</p><p></p><p> $this->setLoader($loader);</p><p> try {</p><p> $template = $this->loadTemplate($name);</p><p> } finally {</p><p> $this->setLoader($current);</p><p> }</p><p></p><p> return $template;</p><p> }</p><p></p><p> /**</p><p> * Returns true if the template is still fresh.</p><p> *</p><p> * Besides checking the loader for freshness information,</p><p> * this method also checks if the enabled extensions have</p><p> * not changed.</p><p> *</p><p> * @param string $name The template name</p><p> * @param int $time The last modification time of the cached template</p><p> *</p><p> * @return bool true if the template is fresh, false otherwise</p><p> */</p><p> public function isTemplateFresh($name, $time)</p><p> {</p><p> return $this->extensionSet->getLastModified() <= $time && $this->getLoader()->isFresh($name, $time);</p><p> }</p><p></p><p> /**</p><p> * Tries to load a template consecutively from an array.</p><p> *</p><p> * Similar to loadTemplate() but it also accepts Twig_Template instances and an array</p><p> * of templates where each is tried to be loaded.</p><p> *</p><p> * @param string|Twig_Template|array $names A template or an array of templates to try consecutively</p><p> *</p><p> * @return Twig_Template</p><p> *</p><p> * @throws Twig_Error_Loader When none of the templates can be found</p><p> * @throws Twig_Error_Syntax When an error occurred during compilation</p><p> */</p><p> public function resolveTemplate($names)</p><p> {</p><p> if (!is_array($names)) {</p><p> $names = array($names);</p><p> }</p><p></p><p> foreach ($names as $name) {</p><p> if ($name instanceof Twig_Template) {</p><p> return $name;</p><p> }</p><p></p><p> try {</p><p> return $this->loadTemplate($name);</p><p> } catch (Twig_Error_Loader $e) {</p><p> }</p><p> }</p><p></p><p> if (1 === count($names)) {</p><p> throw $e;</p><p> }</p><p></p><p> throw new Twig_Error_Loader(sprintf('Unable to find one of the following templates: "%s".', implode('", "', $names)));</p><p> }</p><p></p><p> public function setLexer(Twig_Lexer $lexer)</p><p> {</p><p> $this->lexer = $lexer;</p><p> }</p><p></p><p> /**</p><p> * Tokenizes a source code.</p><p> *</p><p> * @return Twig_TokenStream</p><p> *</p><p> * @throws Twig_Error_Syntax When the code is syntactically wrong</p><p> */</p><p> public function tokenize(Twig_Source $source)</p><p> {</p><p> if (null === $this->lexer) {</p><p> $this->lexer = new Twig_Lexer($this);</p><p> }</p><p></p><p> return $this->lexer->tokenize($source);</p><p> }</p><p></p><p> public function setParser(Twig_Parser $parser)</p><p> {</p><p> $this->parser = $parser;</p><p> }</p><p></p><p> /**</p><p> * Converts a token stream to a node tree.</p><p> *</p><p> * @return Twig_Node_Module</p><p> *</p><p> * @throws Twig_Error_Syntax When the token stream is syntactically or semantically wrong</p><p> */</p><p> public function parse(Twig_TokenStream $stream)</p><p> {</p><p> if (null === $this->parser) {</p><p> $this->parser = new Twig_Parser($this);</p><p> }</p><p></p><p> return $this->parser->parse($stream);</p><p> }</p><p></p><p> public function setCompiler(Twig_Compiler $compiler)</p><p> {</p><p> $this->compiler = $compiler;</p><p> }</p><p></p><p> /**</p><p> * Compiles a node and returns the PHP code.</p><p> *</p><p> * @return string The compiled PHP source code</p><p> */</p><p> public function compile(Twig_Node $node)</p><p> {</p><p> if (null === $this->compiler) {</p><p> $this->compiler = new Twig_Compiler($this);</p><p> }</p><p></p><p> return $this->compiler->compile($node)->getSource();</p><p> }</p><p></p><p> /**</p><p> * Compiles a template source code.</p><p> *</p><p> * @return string The compiled PHP source code</p><p> *</p><p> * @throws Twig_Error_Syntax When there was an error during tokenizing, parsing or compiling</p><p> */</p><p> public function compileSource(Twig_Source $source)</p><p> {</p><p> try {</p><p> return $this->compile($this->parse($this->tokenize($source)));</p><p> } catch (Twig_Error $e) {</p><p> $e->setSourceContext($source);</p><p> throw $e;</p><p> } catch (Exception $e) {</p><p> throw new Twig_Error_Syntax(sprintf('An exception has been thrown during the compilation of a template ("%s").', $e->getMessage()), -1, $source, $e);</p><p> }</p><p> }</p><p></p><p> public function setLoader(Twig_LoaderInterface $loader)</p><p> {</p><p> $this->loader = $loader;</p><p> }</p><p></p><p> /**</p><p> * Gets the Loader instance.</p><p> *</p><p> * @return Twig_LoaderInterface</p><p> */</p><p> public function getLoader()</p><p> {</p><p> return $this->loader;</p><p> }</p><p></p><p> /**</p><p> * Sets the default template charset.</p><p> *</p><p> * @param string $charset The default charset</p><p> */</p><p> public function setCharset($charset)</p><p> {</p><p> if ('UTF8' === $charset = strtoupper($charset)) {</p><p> // iconv on Windows requires "UTF-8" instead of "UTF8"</p><p> $charset = 'UTF-8';</p><p> }</p><p></p><p> $this->charset = $charset;</p><p> }</p><p></p><p> /**</p><p> * Gets the default template charset.</p><p> *</p><p> * @return string The default charset</p><p> */</p><p> public function getCharset()</p><p> {</p><p> return $this->charset;</p><p> }</p><p></p><p> /**</p><p> * Returns true if the given extension is registered.</p><p> *</p><p> * @param string $class The extension class name</p><p> *</p><p> * @return bool Whether the extension is registered or not</p><p> */</p><p> public function hasExtension($class)</p><p> {</p><p> return $this->extensionSet->hasExtension($class);</p><p> }</p><p></p><p> /**</p><p> * Adds a runtime loader.</p><p> */</p><p> public function addRuntimeLoader(Twig_RuntimeLoaderInterface $loader)</p><p> {</p><p> $this->runtimeLoaders[] = $loader;</p><p> }</p><p></p><p> /**</p><p> * Gets an extension by class name.</p><p> *</p><p> * @param string $class The extension class name</p><p> *</p><p> * @return Twig_ExtensionInterface</p><p> */</p><p> public function getExtension($class)</p><p> {</p><p> return $this->extensionSet->getExtension($class);</p><p> }</p><p></p><p> /**</p><p> * Returns the runtime implementation of a Twig element (filter/function/test).</p><p> *</p><p> * @param string $class A runtime class name</p><p> *</p><p> * @return object The runtime implementation</p><p> *</p><p> * @throws Twig_Error_Runtime When the template cannot be found</p><p> */</p><p> public function getRuntime($class)</p><p> {</p><p> if (isset($this->runtimes[$class])) {</p><p> return $this->runtimes[$class];</p><p> }</p><p></p><p> foreach ($this->runtimeLoaders as $loader) {</p><p> if (null !== $runtime = $loader->load($class)) {</p><p> return $this->runtimes[$class] = $runtime;</p><p> }</p><p> }</p><p></p><p> throw new Twig_Error_Runtime(sprintf('Unable to load the "%s" runtime.', $class));</p><p> }</p><p></p><p> public function addExtension(Twig_ExtensionInterface $extension)</p><p> {</p><p> $this->extensionSet->addExtension($extension);</p><p> $this->updateOptionsHash();</p><p> }</p><p></p><p> /**</p><p> * Registers an array of extensions.</p><p> *</p><p> * @param array $extensions An array of extensions</p><p> */</p><p> public function setExtensions(array $extensions)</p><p> {</p><p> $this->extensionSet->setExtensions($extensions);</p><p> }</p><p></p><p> /**</p><p> * Returns all registered extensions.</p><p> *</p><p> * @return Twig_ExtensionInterface[] An array of extensions (keys are for internal usage only and should not be relied on)</p><p> */</p><p> public function getExtensions()</p><p> {</p><p> return $this->extensionSet->getExtensions();</p><p> }</p><p></p><p> public function addTokenParser(Twig_TokenParserInterface $parser)</p><p> {</p><p> $this->extensionSet->addTokenParser($parser);</p><p> }</p><p></p><p> /**</p><p> * Gets the registered Token Parsers.</p><p> *</p><p> * @return Twig_TokenParserInterface[]</p><p> *</p><p> * @internal</p><p> */</p><p> public function getTokenParsers()</p><p> {</p><p> return $this->extensionSet->getTokenParsers();</p><p> }</p><p></p><p> /**</p><p> * Gets registered tags.</p><p> *</p><p> * @return Twig_TokenParserInterface[]</p><p> *</p><p> * @internal</p><p> */</p><p> public function getTags()</p><p> {</p><p> $tags = array();</p><p> foreach ($this->getTokenParsers() as $parser) {</p><p> $tags[$parser->getTag()] = $parser;</p><p> }</p><p></p><p> return $tags;</p><p> }</p><p></p><p> public function addNodeVisitor(Twig_NodeVisitorInterface $visitor)</p><p> {</p><p> $this->extensionSet->addNodeVisitor($visitor);</p><p> }</p><p></p><p> /**</p><p> * Gets the registered Node Visitors.</p><p> *</p><p> * @return Twig_NodeVisitorInterface[]</p><p> *</p><p> * @internal</p><p> */</p><p> public function getNodeVisitors()</p><p> {</p><p> return $this->extensionSet->getNodeVisitors();</p><p> }</p><p></p><p> public function addFilter(Twig_Filter $filter)</p><p> {</p><p> $this->extensionSet->addFilter($filter);</p><p> }</p><p></p><p> /**</p><p> * Get a filter by name.</p><p> *</p><p> * Subclasses may override this method and load filters differently;</p><p> * so no list of filters is available.</p><p> *</p><p> * @param string $name The filter name</p><p> *</p><p> * @return Twig_Filter|false A Twig_Filter instance or false if the filter does not exist</p><p> *</p><p> * @internal</p><p> */</p><p> public function getFilter($name)</p><p> {</p><p> return $this->extensionSet->getFilter($name);</p><p> }</p><p></p><p> public function registerUndefinedFilterCallback(callable $callable)</p><p> {</p><p> $this->extensionSet->registerUndefinedFilterCallback($callable);</p><p> }</p><p></p><p> /**</p><p> * Gets the registered Filters.</p><p> *</p><p> * Be warned that this method cannot return filters defined with registerUndefinedFilterCallback.</p><p> *</p><p> * @return Twig_Filter[]</p><p> *</p><p> * @see registerUndefinedFilterCallback</p><p> *</p><p> * @internal</p><p> */</p><p> public function getFilters()</p><p> {</p><p> return $this->extensionSet->getFilters();</p><p> }</p><p></p><p> /**</p><p> * Registers a Test.</p><p> *</p><p> * @param Twig_Test $test A Twig_Test instance</p><p> */</p><p> public function addTest(Twig_Test $test)</p><p> {</p><p> $this->extensionSet->addTest($test);</p><p> }</p><p></p><p> /**</p><p> * Gets the registered Tests.</p><p> *</p><p> * @return Twig_Test[]</p><p> *</p><p> * @internal</p><p> */</p><p> public function getTests()</p><p> {</p><p> return $this->extensionSet->getTests();</p><p> }</p><p></p><p> /**</p><p> * Gets a test by name.</p><p> *</p><p> * @param string $name The test name</p><p> *</p><p> * @return Twig_Test|false A Twig_Test instance or false if the test does not exist</p><p> *</p><p> * @internal</p><p> */</p><p> public function getTest($name)</p><p> {</p><p> return $this->extensionSet->getTest($name);</p><p> }</p><p></p><p> public function addFunction(Twig_Function $function)</p><p> {</p><p> $this->extensionSet->addFunction($function);</p><p> }</p><p></p><p> /**</p><p> * Get a function by name.</p><p> *</p><p> * Subclasses may override this method and load functions differently;</p><p> * so no list of functions is available.</p><p> *</p><p> * @param string $name function name</p><p> *</p><p> * @return Twig_Function|false A Twig_Function instance or false if the function does not exist</p><p> *</p><p> * @internal</p><p> */</p><p> public function getFunction($name)</p><p> {</p><p> return $this->extensionSet->getFunction($name);</p><p> }</p><p></p><p> public function registerUndefinedFunctionCallback(callable $callable)</p><p> {</p><p> $this->extensionSet->registerUndefinedFunctionCallback($callable);</p><p> }</p><p></p><p> /**</p><p> * Gets registered functions.</p><p> *</p><p> * Be warned that this method cannot return functions defined with registerUndefinedFunctionCallback.</p><p> *</p><p> * @return Twig_Function[]</p><p> *</p><p> * @see registerUndefinedFunctionCallback</p><p> *</p><p> * @internal</p><p> */</p><p> public function getFunctions()</p><p> {</p><p> return $this->extensionSet->getFunctions();</p><p> }</p><p></p><p> /**</p><p> * Registers a Global.</p><p> *</p><p> * New globals can be added before compiling or rendering a template;</p><p> * but after, you can only update existing globals.</p><p> *</p><p> * @param string $name The global name</p><p> * @param mixed $value The global value</p><p> */</p><p> public function addGlobal($name, $value)</p><p> {</p><p> if ($this->extensionSet->isInitialized() && !array_key_exists($name, $this->getGlobals())) {</p><p> throw new LogicException(sprintf('Unable to add global "%s" as the runtime or the extensions have already been initialized.', $name));</p><p> }</p><p></p><p> if (null !== $this->resolvedGlobals) {</p><p> $this->resolvedGlobals[$name] = $value;</p><p> } else {</p><p> $this->globals[$name] = $value;</p><p> }</p><p> }</p><p></p><p> /**</p><p> * Gets the registered Globals.</p><p> *</p><p> * @return array An array of globals</p><p> *</p><p> * @internal</p><p> */</p><p> public function getGlobals()</p><p> {</p><p> if ($this->extensionSet->isInitialized()) {</p><p> if (null === $this->resolvedGlobals) {</p><p> $this->resolvedGlobals = array_merge($this->extensionSet->getGlobals(), $this->globals);</p><p> }</p><p></p><p> return $this->resolvedGlobals;</p><p> }</p><p></p><p> return array_merge($this->extensionSet->getGlobals(), $this->globals);</p><p> }</p><p></p><p> /**</p><p> * Merges a context with the defined globals.</p><p> *</p><p> * @param array $context An array representing the context</p><p> *</p><p> * @return array The context merged with the globals</p><p> */</p><p> public function mergeGlobals(array $context)</p><p> {</p><p> // we don't use array_merge as the context being generally</p><p> // bigger than globals, this code is faster.</p><p> foreach ($this->getGlobals() as $key => $value) {</p><p> if (!array_key_exists($key, $context)) {</p><p> $context[$key] = $value;</p><p> }</p><p> }</p><p></p><p> return $context;</p><p> }</p><p></p><p> /**</p><p> * Gets the registered unary Operators.</p><p> *</p><p> * @return array An array of unary operators</p><p> *</p><p> * @internal</p><p> */</p><p> public function getUnaryOperators()</p><p> {</p><p> return $this->extensionSet->getUnaryOperators();</p><p> }</p><p></p><p> /**</p><p> * Gets the registered binary Operators.</p><p> *</p><p> * @return array An array of binary operators</p><p> *</p><p> * @internal</p><p> */</p><p> public function getBinaryOperators()</p><p> {</p><p> return $this->extensionSet->getBinaryOperators();</p><p> }</p><p></p><p> private function updateOptionsHash()</p><p> {</p><p> $this->optionsHash = implode(':', array(</p><p> $this->extensionSet->getSignature(),</p><p> PHP_MAJOR_VERSION,</p><p> PHP_MINOR_VERSION,</p><p> self::VERSION,</p><p> (int) $this->debug,</p><p> $this->baseTemplateClass,</p><p> (int) $this->strictVariables,</p><p> ));</p><p> }</p><p>}</p><p>[/PHP]</p></blockquote><p></p>
[QUOTE="Metty, post: 2687139, member: 571615"] [PHP]<?php /* * This file is part of Twig. * * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Stores the Twig configuration. * * @author Fabien Potencier <fabien@symfony.com> */ class Twig_Environment { const VERSION = '2.3.2'; const VERSION_ID = 20302; const MAJOR_VERSION = 2; const MINOR_VERSION = 3; const RELEASE_VERSION = 2; const EXTRA_VERSION = ''; private $charset; private $loader; private $debug; private $autoReload; private $cache; private $lexer; private $parser; private $compiler; private $baseTemplateClass; private $globals = array(); private $resolvedGlobals; private $loadedTemplates; private $strictVariables; private $templateClassPrefix = '__TwigTemplate_'; private $originalCache; private $extensionSet; private $runtimeLoaders = array(); private $runtimes = array(); private $optionsHash; /** * Constructor. * * Available options: * * * debug: When set to true, it automatically set "auto_reload" to true as * well (default to false). * * * charset: The charset used by the templates (default to UTF-8). * * * base_template_class: The base template class to use for generated * templates (default to Twig_Template). * * * cache: An absolute path where to store the compiled templates, * a Twig_Cache_Interface implementation, * or false to disable compilation cache (default). * * * auto_reload: Whether to reload the template if the original source changed. * If you don't provide the auto_reload option, it will be * determined automatically based on the debug value. * * * strict_variables: Whether to ignore invalid variables in templates * (default to false). * * * autoescape: Whether to enable auto-escaping (default to html): * * false: disable auto-escaping * * html, js: set the autoescaping to one of the supported strategies * * name: set the autoescaping strategy based on the template name extension * * PHP callback: a PHP callback that returns an escaping strategy based on the template "name" * * * optimizations: A flag that indicates which optimizations to apply * (default to -1 which means that all optimizations are enabled; * set it to 0 to disable). * * @param Twig_LoaderInterface $loader * @param array $options An array of options */ public function __construct(Twig_LoaderInterface $loader, $options = array()) { $this->setLoader($loader); $options = array_merge(array( 'debug' => false, 'charset' => 'UTF-8', 'base_template_class' => 'Twig_Template', 'strict_variables' => false, 'autoescape' => 'html', 'cache' => false, 'auto_reload' => null, 'optimizations' => -1, ), $options); $this->debug = (bool) $options['debug']; $this->setCharset($options['charset']); $this->baseTemplateClass = $options['base_template_class']; $this->autoReload = null === $options['auto_reload'] ? $this->debug : (bool) $options['auto_reload']; $this->strictVariables = (bool) $options['strict_variables']; $this->setCache($options['cache']); $this->extensionSet = new Twig_ExtensionSet(); $this->addExtension(new Twig_Extension_Core()); $this->addExtension(new Twig_Extension_Escaper($options['autoescape'])); $this->addExtension(new Twig_Extension_Optimizer($options['optimizations'])); } /** * Gets the base template class for compiled templates. * * @return string The base template class name */ public function getBaseTemplateClass() { return $this->baseTemplateClass; } /** * Sets the base template class for compiled templates. * * @param string $class The base template class name */ public function setBaseTemplateClass($class) { $this->baseTemplateClass = $class; $this->updateOptionsHash(); } /** * Enables debugging mode. */ public function enableDebug() { $this->debug = true; $this->updateOptionsHash(); } /** * Disables debugging mode. */ public function disableDebug() { $this->debug = false; $this->updateOptionsHash(); } /** * Checks if debug mode is enabled. * * @return bool true if debug mode is enabled, false otherwise */ public function isDebug() { return $this->debug; } /** * Enables the auto_reload option. */ public function enableAutoReload() { $this->autoReload = true; } /** * Disables the auto_reload option. */ public function disableAutoReload() { $this->autoReload = false; } /** * Checks if the auto_reload option is enabled. * * @return bool true if auto_reload is enabled, false otherwise */ public function isAutoReload() { return $this->autoReload; } /** * Enables the strict_variables option. */ public function enableStrictVariables() { $this->strictVariables = true; $this->updateOptionsHash(); } /** * Disables the strict_variables option. */ public function disableStrictVariables() { $this->strictVariables = false; $this->updateOptionsHash(); } /** * Checks if the strict_variables option is enabled. * * @return bool true if strict_variables is enabled, false otherwise */ public function isStrictVariables() { return $this->strictVariables; } /** * Gets the current cache implementation. * * @param bool $original Whether to return the original cache option or the real cache instance * * @return Twig_CacheInterface|string|false A Twig_CacheInterface implementation, * an absolute path to the compiled templates, * or false to disable cache */ public function getCache($original = true) { return $original ? $this->originalCache : $this->cache; } /** * Sets the current cache implementation. * * @param Twig_CacheInterface|string|false $cache A Twig_CacheInterface implementation, * an absolute path to the compiled templates, * or false to disable cache */ public function setCache($cache) { if (is_string($cache)) { $this->originalCache = $cache; $this->cache = new Twig_Cache_Filesystem($cache); } elseif (false === $cache) { $this->originalCache = $cache; $this->cache = new Twig_Cache_Null(); } elseif ($cache instanceof Twig_CacheInterface) { $this->originalCache = $this->cache = $cache; } else { throw new LogicException(sprintf('Cache can only be a string, false, or a Twig_CacheInterface implementation.')); } } /** * Gets the template class associated with the given string. * * The generated template class is based on the following parameters: * * * The cache key for the given template; * * The currently enabled extensions; * * Whether the Twig C extension is available or not; * * PHP version; * * Twig version; * * Options with what environment was created. * * @param string $name The name for which to calculate the template class name * @param int|null $index The index if it is an embedded template * * @return string The template class name */ public function getTemplateClass($name, $index = null) { $key = $this->getLoader()->getCacheKey($name).$this->optionsHash; return $this->templateClassPrefix.hash('sha256', $key).(null === $index ? '' : '_'.$index); } /** * Renders a template. * * @param string $name The template name * @param array $context An array of parameters to pass to the template * * @return string The rendered template * * @throws Twig_Error_Loader When the template cannot be found * @throws Twig_Error_Syntax When an error occurred during compilation * @throws Twig_Error_Runtime When an error occurred during rendering */ public function render($name, array $context = array()) { return $this->loadTemplate($name)->render($context); } /** * Displays a template. * * @param string $name The template name * @param array $context An array of parameters to pass to the template * * @throws Twig_Error_Loader When the template cannot be found * @throws Twig_Error_Syntax When an error occurred during compilation * @throws Twig_Error_Runtime When an error occurred during rendering */ public function display($name, array $context = array()) { $this->loadTemplate($name)->display($context); } /** * Loads a template. * * @param string|Twig_TemplateWrapper|Twig_Template $name The template name * * @return Twig_TemplateWrapper */ public function load($name) { if ($name instanceof Twig_TemplateWrapper) { return $name; } if ($name instanceof Twig_Template) { return new Twig_TemplateWrapper($this, $name); } return new Twig_TemplateWrapper($this, $this->loadTemplate($name)); } /** * Loads a template internal representation. * * This method is for internal use only and should never be called * directly. * * @param string $name The template name * @param int $index The index if it is an embedded template * * @return Twig_Template A template instance representing the given template name * * @throws Twig_Error_Loader When the template cannot be found * @throws Twig_Error_Runtime When a previously generated cache is corrupted * @throws Twig_Error_Syntax When an error occurred during compilation * * @internal */ public function loadTemplate($name, $index = null) { $cls = $mainCls = $this->getTemplateClass($name); if (null !== $index) { $cls .= '_'.$index; } if (isset($this->loadedTemplates[$cls])) { return $this->loadedTemplates[$cls]; } if (!class_exists($cls, false)) { $key = $this->cache->generateKey($name, $mainCls); if (!$this->isAutoReload() || $this->isTemplateFresh($name, $this->cache->getTimestamp($key))) { $this->cache->load($key); } if (!class_exists($cls, false)) { $source = $this->getLoader()->getSourceContext($name); $content = $this->compileSource($source); $this->cache->write($key, $content); $this->cache->load($key); if (!class_exists($mainCls, false)) { /* Last line of defense if either $this->bcWriteCacheFile was used, * $this->cache is implemented as a no-op or we have a race condition * where the cache was cleared between the above calls to write to and load from * the cache. */ eval('?>'.$content); } if (!class_exists($cls, false)) { throw new Twig_Error_Runtime(sprintf('Failed to load Twig template "%s", index "%s": cache is corrupted.', $name, $index), -1, $source); } } } // to be removed in 3.0 $this->extensionSet->initRuntime($this); return $this->loadedTemplates[$cls] = new $cls($this); } /** * Creates a template from source. * * This method should not be used as a generic way to load templates. * * @param string $template The template name * * @return Twig_Template A template instance representing the given template name * * @throws Twig_Error_Loader When the template cannot be found * @throws Twig_Error_Syntax When an error occurred during compilation */ public function createTemplate($template) { $name = sprintf('__string_template__%s', hash('sha256', uniqid(mt_rand(), true), false)); $loader = new Twig_Loader_Chain(array( new Twig_Loader_Array(array($name => $template)), $current = $this->getLoader(), )); $this->setLoader($loader); try { $template = $this->loadTemplate($name); } finally { $this->setLoader($current); } return $template; } /** * Returns true if the template is still fresh. * * Besides checking the loader for freshness information, * this method also checks if the enabled extensions have * not changed. * * @param string $name The template name * @param int $time The last modification time of the cached template * * @return bool true if the template is fresh, false otherwise */ public function isTemplateFresh($name, $time) { return $this->extensionSet->getLastModified() <= $time && $this->getLoader()->isFresh($name, $time); } /** * Tries to load a template consecutively from an array. * * Similar to loadTemplate() but it also accepts Twig_Template instances and an array * of templates where each is tried to be loaded. * * @param string|Twig_Template|array $names A template or an array of templates to try consecutively * * @return Twig_Template * * @throws Twig_Error_Loader When none of the templates can be found * @throws Twig_Error_Syntax When an error occurred during compilation */ public function resolveTemplate($names) { if (!is_array($names)) { $names = array($names); } foreach ($names as $name) { if ($name instanceof Twig_Template) { return $name; } try { return $this->loadTemplate($name); } catch (Twig_Error_Loader $e) { } } if (1 === count($names)) { throw $e; } throw new Twig_Error_Loader(sprintf('Unable to find one of the following templates: "%s".', implode('", "', $names))); } public function setLexer(Twig_Lexer $lexer) { $this->lexer = $lexer; } /** * Tokenizes a source code. * * @return Twig_TokenStream * * @throws Twig_Error_Syntax When the code is syntactically wrong */ public function tokenize(Twig_Source $source) { if (null === $this->lexer) { $this->lexer = new Twig_Lexer($this); } return $this->lexer->tokenize($source); } public function setParser(Twig_Parser $parser) { $this->parser = $parser; } /** * Converts a token stream to a node tree. * * @return Twig_Node_Module * * @throws Twig_Error_Syntax When the token stream is syntactically or semantically wrong */ public function parse(Twig_TokenStream $stream) { if (null === $this->parser) { $this->parser = new Twig_Parser($this); } return $this->parser->parse($stream); } public function setCompiler(Twig_Compiler $compiler) { $this->compiler = $compiler; } /** * Compiles a node and returns the PHP code. * * @return string The compiled PHP source code */ public function compile(Twig_Node $node) { if (null === $this->compiler) { $this->compiler = new Twig_Compiler($this); } return $this->compiler->compile($node)->getSource(); } /** * Compiles a template source code. * * @return string The compiled PHP source code * * @throws Twig_Error_Syntax When there was an error during tokenizing, parsing or compiling */ public function compileSource(Twig_Source $source) { try { return $this->compile($this->parse($this->tokenize($source))); } catch (Twig_Error $e) { $e->setSourceContext($source); throw $e; } catch (Exception $e) { throw new Twig_Error_Syntax(sprintf('An exception has been thrown during the compilation of a template ("%s").', $e->getMessage()), -1, $source, $e); } } public function setLoader(Twig_LoaderInterface $loader) { $this->loader = $loader; } /** * Gets the Loader instance. * * @return Twig_LoaderInterface */ public function getLoader() { return $this->loader; } /** * Sets the default template charset. * * @param string $charset The default charset */ public function setCharset($charset) { if ('UTF8' === $charset = strtoupper($charset)) { // iconv on Windows requires "UTF-8" instead of "UTF8" $charset = 'UTF-8'; } $this->charset = $charset; } /** * Gets the default template charset. * * @return string The default charset */ public function getCharset() { return $this->charset; } /** * Returns true if the given extension is registered. * * @param string $class The extension class name * * @return bool Whether the extension is registered or not */ public function hasExtension($class) { return $this->extensionSet->hasExtension($class); } /** * Adds a runtime loader. */ public function addRuntimeLoader(Twig_RuntimeLoaderInterface $loader) { $this->runtimeLoaders[] = $loader; } /** * Gets an extension by class name. * * @param string $class The extension class name * * @return Twig_ExtensionInterface */ public function getExtension($class) { return $this->extensionSet->getExtension($class); } /** * Returns the runtime implementation of a Twig element (filter/function/test). * * @param string $class A runtime class name * * @return object The runtime implementation * * @throws Twig_Error_Runtime When the template cannot be found */ public function getRuntime($class) { if (isset($this->runtimes[$class])) { return $this->runtimes[$class]; } foreach ($this->runtimeLoaders as $loader) { if (null !== $runtime = $loader->load($class)) { return $this->runtimes[$class] = $runtime; } } throw new Twig_Error_Runtime(sprintf('Unable to load the "%s" runtime.', $class)); } public function addExtension(Twig_ExtensionInterface $extension) { $this->extensionSet->addExtension($extension); $this->updateOptionsHash(); } /** * Registers an array of extensions. * * @param array $extensions An array of extensions */ public function setExtensions(array $extensions) { $this->extensionSet->setExtensions($extensions); } /** * Returns all registered extensions. * * @return Twig_ExtensionInterface[] An array of extensions (keys are for internal usage only and should not be relied on) */ public function getExtensions() { return $this->extensionSet->getExtensions(); } public function addTokenParser(Twig_TokenParserInterface $parser) { $this->extensionSet->addTokenParser($parser); } /** * Gets the registered Token Parsers. * * @return Twig_TokenParserInterface[] * * @internal */ public function getTokenParsers() { return $this->extensionSet->getTokenParsers(); } /** * Gets registered tags. * * @return Twig_TokenParserInterface[] * * @internal */ public function getTags() { $tags = array(); foreach ($this->getTokenParsers() as $parser) { $tags[$parser->getTag()] = $parser; } return $tags; } public function addNodeVisitor(Twig_NodeVisitorInterface $visitor) { $this->extensionSet->addNodeVisitor($visitor); } /** * Gets the registered Node Visitors. * * @return Twig_NodeVisitorInterface[] * * @internal */ public function getNodeVisitors() { return $this->extensionSet->getNodeVisitors(); } public function addFilter(Twig_Filter $filter) { $this->extensionSet->addFilter($filter); } /** * Get a filter by name. * * Subclasses may override this method and load filters differently; * so no list of filters is available. * * @param string $name The filter name * * @return Twig_Filter|false A Twig_Filter instance or false if the filter does not exist * * @internal */ public function getFilter($name) { return $this->extensionSet->getFilter($name); } public function registerUndefinedFilterCallback(callable $callable) { $this->extensionSet->registerUndefinedFilterCallback($callable); } /** * Gets the registered Filters. * * Be warned that this method cannot return filters defined with registerUndefinedFilterCallback. * * @return Twig_Filter[] * * @see registerUndefinedFilterCallback * * @internal */ public function getFilters() { return $this->extensionSet->getFilters(); } /** * Registers a Test. * * @param Twig_Test $test A Twig_Test instance */ public function addTest(Twig_Test $test) { $this->extensionSet->addTest($test); } /** * Gets the registered Tests. * * @return Twig_Test[] * * @internal */ public function getTests() { return $this->extensionSet->getTests(); } /** * Gets a test by name. * * @param string $name The test name * * @return Twig_Test|false A Twig_Test instance or false if the test does not exist * * @internal */ public function getTest($name) { return $this->extensionSet->getTest($name); } public function addFunction(Twig_Function $function) { $this->extensionSet->addFunction($function); } /** * Get a function by name. * * Subclasses may override this method and load functions differently; * so no list of functions is available. * * @param string $name function name * * @return Twig_Function|false A Twig_Function instance or false if the function does not exist * * @internal */ public function getFunction($name) { return $this->extensionSet->getFunction($name); } public function registerUndefinedFunctionCallback(callable $callable) { $this->extensionSet->registerUndefinedFunctionCallback($callable); } /** * Gets registered functions. * * Be warned that this method cannot return functions defined with registerUndefinedFunctionCallback. * * @return Twig_Function[] * * @see registerUndefinedFunctionCallback * * @internal */ public function getFunctions() { return $this->extensionSet->getFunctions(); } /** * Registers a Global. * * New globals can be added before compiling or rendering a template; * but after, you can only update existing globals. * * @param string $name The global name * @param mixed $value The global value */ public function addGlobal($name, $value) { if ($this->extensionSet->isInitialized() && !array_key_exists($name, $this->getGlobals())) { throw new LogicException(sprintf('Unable to add global "%s" as the runtime or the extensions have already been initialized.', $name)); } if (null !== $this->resolvedGlobals) { $this->resolvedGlobals[$name] = $value; } else { $this->globals[$name] = $value; } } /** * Gets the registered Globals. * * @return array An array of globals * * @internal */ public function getGlobals() { if ($this->extensionSet->isInitialized()) { if (null === $this->resolvedGlobals) { $this->resolvedGlobals = array_merge($this->extensionSet->getGlobals(), $this->globals); } return $this->resolvedGlobals; } return array_merge($this->extensionSet->getGlobals(), $this->globals); } /** * Merges a context with the defined globals. * * @param array $context An array representing the context * * @return array The context merged with the globals */ public function mergeGlobals(array $context) { // we don't use array_merge as the context being generally // bigger than globals, this code is faster. foreach ($this->getGlobals() as $key => $value) { if (!array_key_exists($key, $context)) { $context[$key] = $value; } } return $context; } /** * Gets the registered unary Operators. * * @return array An array of unary operators * * @internal */ public function getUnaryOperators() { return $this->extensionSet->getUnaryOperators(); } /** * Gets the registered binary Operators. * * @return array An array of binary operators * * @internal */ public function getBinaryOperators() { return $this->extensionSet->getBinaryOperators(); } private function updateOptionsHash() { $this->optionsHash = implode(':', array( $this->extensionSet->getSignature(), PHP_MAJOR_VERSION, PHP_MINOR_VERSION, self::VERSION, (int) $this->debug, $this->baseTemplateClass, (int) $this->strictVariables, )); } } [/PHP] [/QUOTE]
Bilder bitte
hier hochladen
und danach über das Bild-Icon (Direktlink vorher kopieren) platzieren.
Zitate einfügen…
Authentifizierung
Wenn ★ = 12, ◇ = 4 und die Hälfte von ★ zu ◇ addiert wird, was ist das Ergebnis?
Antworten
Start
Forum
Sonstiges
Webdesign, Webentwicklung & Programmierung
PHP, Javascript, jQuery, Ajax, nodeJS, MySQL...
Post seiten leer? Wieso warum?!!
Oben