Some most popular front-end framework
light-weight
for mobile hybrid
Some most popular front-end framework
light-weight
for mobile hybrid
Some tips.
1. Remove duplicates in array using array_unique
array array_unique ( array $array [, int $sort_flags = SORT_STRING ] )
2. Remove empty elements use array_filter
array array_filter ( array $array [, callable $callback [, int $flag = 0 ]] )
3. value is in the array use in_array
bool in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] )
4. key exist in array use array_key_exist
bool array_key_exists ( mixed $key , array $array )
Below are some security checklist for a web application.
Some tools or framework for UI
quick intro on how to code – variable, operation, integer, string, list (array)
some controls – if else, for, functions
click on “next” at the bottom to go through the rest of the doc for more advanced functions.
Add these lines to .htaccess to force https
RewriteCond %{HTTPS} !=on
RewriteRule ^.*$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Use the following library to easily talk to any API services. Without having to deal with cURL
http://requests.ryanmccue.info/
http://docs.guzzlephp.org/en/stable/
Use postman to simulate the REST API call
This is a useful generator for crontab command line
You can set for every minute/hour, set by time range etc.
crontab.guru