Home » Wapka Codes 2022 » Wapka Basic function
maria 3 years ago |
<div class="bar1">
<div class="bar1top">Helper function</div>
<div class="info">You can use helper function with tag codes. Helper function is very useful for data processing.
WAPKA function name is case sensitive. To make function chain use (.) dot</div>
<div class="bar13"><b>:GET(name);</b> - To get data from url</div>
<div class="bar14"><b>:POST(name);</b> - To get http post data</div>
<div class="bar13"><b>:COOKIE(name);</b> - To get http cookie</div>
<div class="bar14"><b>:REQUEST(name);</b> - Get combined data from get, post & cookie</div>
<div class="bar13"><b>:VALUE(data);</b> - This function is used to set function parameter.</div>
<div class="bar14"><b>:DATA(Function or tag or data);</b> - You can get data from many function like :DATA(Name: #GET(name)# ID: #VAR(USER_ID)#);</div>
<div class="bar13"><b>:SET(name);</b> - You can use this function to define variable. :VALUE(test data).SET(new_var); You can also call multiply function and make chain - :GET(id).INT.SET(ID); here we get data from url then make sure it number then set variable.</div>
<div class="bar14"><b>:SAVE(name);</b> - This is similar as SET but this will save data in server (session) and you can use this data later on any page</div>
<div class="bar13"><b>:VAR(name);</b> - To get data from variable use this function</div>
<div class="bar14"><b>:DATE();</b> - This function is for date and time. To format current date Use :DATE(formater); You can format any date from other function and also time ago like :VALUE(Dec 2020).DATE(AGO); to use with other function use :VALUE(%date%).DATE(Formater or AGO);</div>
<div class="bar13"><b>:SLUG(make url);</b> - Make SEO frendly url from any text. You can use with other function/tag like :SLUG(%title%);</div>
<div class="bar14"><b>:URL_ENCODE(url); , :HTML_ENCODE(html);, :BASE64_ENCODE(data);)</b> - To encode data</div>
<div class="bar13"><b>:URL_DECODE(url); , :HTML_DECODE(html);, :BASE64_DECODE(data);)</b> - decode encoded data</div>
<div class="bar14"><b>:REMOVE_TAG;</b> - to remove html tag from input. usage - :REMOVE_TAG(<tag>this is tag</tag>); To allow tag use like - :VALUE(<b>this is bold</b><i>this is italic</i>).REMOVE_TAG(<i>);</div>
<div class="bar13"><b>:LOWER(MAKE IT LOWER);</b> - convert all character to lower case.</div>
<div class="bar14"><b>:UPPER(lower to upper)</b> - convert all character to upper case</div>
<div class="bar13"><b>:TRIM( space );</b> - Remove whitespace from data. You can also remove other character like :VALUE(-----test--------).TRIM(-); this will remove all -</div>
<div class="bar14"><b>:CHOP(space );</b> - Same as TRIM but remove from at the end of string</div>
<div class="bar13"><b>:CUT(["start", "end"]);</b> - Get part of string from start to end you can also set starting and ending position like :VALUE(this is test).CUT([0, 10]); to get first 10 character</div>
<div class="bar14"><b>:LENGTH(data);</b> - length</div>
<div class="bar13"><b>:INT(1234abcd);</b> - To make sure data is numeric</div>
<div class="bar14"><b>:NULL(nothing);</b> - If you want to call a function and hide result use this at the end. :GET(data).SET(var).NULL; set variable and display nothing</div>
<div class="bar13"><b>:REPLACE(["search", "replace"]);</b> - This function is used to search and replace you can pass json array or string as parameter. Usage :VALUE(test_data).REPLACE("_data");</div>
<div class="bar14"><b>:RANDOM(["one", "two", "three", "More");</b> - Get random value form JSON array or string. To generate random number use like :RANDOM("123456790");</div>
<div class="bar13"><b>:PLUS(numeric value);</b> - Math function.</div>
<div class="bar14"><b>:MINUS(numeric value);</b> - Math function.</div>
<div class="bar13"><b>:DIVIDE(numeric value);</b> - Math function.</div>
<div class="bar14"><b>:MULTIPLY(numeric value);</b> - Math function.</div>
<div class="bar13"><b>Math function usage:</b> - To calculate data you can use math function. Example usage: :GET(id).PLUS(100); , :VALUE(100).PLUS(100).DIVIDE(2);, :VAR(number).PlUS.GET(number);</div>
</div>
comment |
Recent Comments (2)
maria | 3 years ago |
Advanced function
IFSET - Check if data not empty.
IFNOT - Check if data empty.
IFEQ - If equal.
IFNE - If not equal
IFGE - If getter then or equal to
IFLE - If less then or equal.
IFIN - Chech if data data exist. Usage: :VALUE(one, two, three).IFIN("two").THEN(2 found);
Or value exist :VALUE(one).IFIN(["one", "two", "three"]).THEN(Ok);
Or value exist :VALUE(one).IFIN(["one", "two", "three"]).THEN(Ok);
IFMATCH - If PCRE regex pattern matched.
IFLIKE - check if two value similar. :VALUE(TeSt).IFLIKE(test).THEN(Same data);
THEN - If condition is true then show this
OR - Optional condition check
ELSE - If condition is false then show this
Usage: -
:VAR(name).OR(variable not set);
:IFSET(%name%).THEN(Name - %name%).ELSE(empty);
:VALUE(12345).IFEQ(12345).THEN(both equal).ELSE(error);
:IFNOT(%id%).OR.IFNOT.VAR(test).OR.IFNOT(%var%).THEN(one or more error).ELSE(ok);
:POST(pin).IFNE(12345).VALUE(data not match).SET(error).ELSE.VALUE(success);
You can make more complex condition.
:VAR(name).OR(variable not set);
:IFSET(%name%).THEN(Name - %name%).ELSE(empty);
:VALUE(12345).IFEQ(12345).THEN(both equal).ELSE(error);
:IFNOT(%id%).OR.IFNOT.VAR(test).OR.IFNOT(%var%).THEN(one or more error).ELSE(ok);
:POST(pin).IFNE(12345).VALUE(data not match).SET(error).ELSE.VALUE(success);
You can make more complex condition.
ADD - to concate two value. :VALUE(one).ADD(two); => one two
APPEND - add value at the start of other value.:VALUE(one).APPEND(two ); => two one
DATA - get data from other function. Usage - :DATA(#VAR(test)# #GET(it)# #POST(data)#);
GOTO - To redirect user from one page to another use this function. Example - :GOTO(/index.php); redirect to home page
reply |
maria | 3 years ago |
Helper function
You can use helper function with tag codes. Helper function is very useful for data processing.
WAPKA function name is case sensitive. To make function chain use (.) dot
:GET(name); - To get data from url
:POST(name); - To get http post data
:COOKIE(name); - To get http cookie
:REQUEST(name); - Get combined data from get, post & cookie
:VALUE(data); - This function is used to set function parameter.
:DATA(Function or tag or data); - You can get data from many function like :DATA(Name: #GET(name)# ID: #VAR(USER_ID)#);
:SET(name); - You can use this function to define variable. :VALUE(test data).SET(new_var); You can also call multiply function and make chain - :GET(id).INT.SET(ID); here we get data from url then make sure it number then set variable.
:SAVE(name); - This is similar as SET but this will save data in server (session) and you can use this data later on any page
:VAR(name); - To get data from variable use this function
:DATE(); - This function is for date and time. To format current date Use :DATE(formater); You can format any date from other function and also time ago like :VALUE(Dec 2020).DATE(AGO); to use with other function use :VALUE(%date%).DATE(Formater or AGO);
:SLUG(make url); - Make SEO frendly url from any text. You can use with other function/tag like :SLUG(%title%);
:URL_ENCODE(url); , :HTML_ENCODE(html);, :BASE64_ENCODE(data);) - To encode data
:URL_DECODE(url); , :HTML_DECODE(html);, :BASE64_DECODE(data);) - decode encoded data
:REMOVE_TAG; - to remove html tag from input. usage - :REMOVE_TAG(<tag>this is tag</tag>); To allow tag use like - :VALUE(<b>this is bold</b><i>this is italic</i>).REMOVE_TAG(<i>);
:LOWER(MAKE IT LOWER); - convert all character to lower case.
:UPPER(lower to upper) - convert all character to upper case
:TRIM( space ); - Remove whitespace from data. You can also remove other character like :VALUE(-----test--------).TRIM(-); this will remove all -
:CHOP(space ); - Same as TRIM but remove from at the end of string
:CUT(["start", "end"]); - Get part of string from start to end you can also set starting and ending position like :VALUE(this is test).CUT([0, 10]); to get first 10 character
:LENGTH(data); - length
:INT(1234abcd); - To make sure data is numeric
:NULL(nothing); - If you want to call a function and hide result use this at the end. :GET(data).SET(var).NULL; set variable and display nothing
:REPLACE(["search", "replace"]); - This function is used to search and replace you can pass json array or string as parameter. Usage :VALUE(test_data).REPLACE("_data");
:RANDOM(["one", "two", "three", "More"); - Get random value form JSON array or string. To generate random number use like :RANDOM("123456790");
:PLUS(numeric value); - Math function.
:MINUS(numeric value); - Math function.
:DIVIDE(numeric value); - Math function.
:MULTIPLY(numeric value); - Math function.
Math function usage: - To calculate data you can use math function. Example usage: :GET(id).PLUS(100); , :VALUE(100).PLUS(100).DIVIDE(2);, :VAR(number).PlUS.GET(number);
reply |