Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.216
Cant Read [ /etc/named.conf ]
7.4.32
finalho
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
local /
cwpsrv /
var /
services /
twig /
doc /
functions /
[ HOME SHELL ]
Name
Size
Permission
Action
attribute.rst
604
B
-rw-r--r--
block.rst
789
B
-rw-r--r--
constant.rst
487
B
-rw-r--r--
cycle.rst
548
B
-rw-r--r--
date.rst
1.04
KB
-rw-r--r--
dump.rst
1.54
KB
-rw-r--r--
include.rst
2.24
KB
-rw-r--r--
index.rst
213
B
-rw-r--r--
max.rst
332
B
-rw-r--r--
min.rst
331
B
-rw-r--r--
parent.rst
563
B
-rw-r--r--
random.rst
703
B
-rw-r--r--
range.rst
1.19
KB
-rw-r--r--
source.rst
694
B
-rw-r--r--
template_from_string.rst
867
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : range.rst
``range`` ========= Returns a list containing an arithmetic progression of integers: .. code-block:: jinja {% for i in range(0, 3) %} {{ i }}, {% endfor %} {# outputs 0, 1, 2, 3, #} When step is given (as the third parameter), it specifies the increment (or decrement for negative values): .. code-block:: jinja {% for i in range(0, 6, 2) %} {{ i }}, {% endfor %} {# outputs 0, 2, 4, 6, #} .. note:: Note that if the start is greater than the end, ``range`` assumes a step of ``-1``: .. code-block:: jinja {% for i in range(3, 0) %} {{ i }}, {% endfor %} {# outputs 3, 2, 1, 0, #} The Twig built-in ``..`` operator is just syntactic sugar for the ``range`` function (with a step of ``1``, or ``-1`` if the start is greater than the end): .. code-block:: jinja {% for i in 0..3 %} {{ i }}, {% endfor %} .. tip:: The ``range`` function works as the native PHP `range`_ function. Arguments --------- * ``low``: The first value of the sequence. * ``high``: The highest possible value of the sequence. * ``step``: The increment between elements of the sequence. .. _`range`: http://php.net/range
Close