Linux Crontab
2011-05-07
IN1, 2011-05-07 00:00:00
IN1, 2023-04-10 14:16:27


Syntax

*     *     *     *     *  "Befehl der ausgeführt werden soll"
|     |     |     |     |
|     |     |     |     +----- Wochentag (0 - 7) (Sonntag ist 0 und 7; oder Namen, siehe unten)
|     |     |     +------- Monat (1 - 12)
|     |     +--------- Tag (1 - 31)
|     +----------- Stunde (0 - 23)
+------------- Minute (0 - 59; oder Bezeichner - siehe unten) 

Befehle in cronjobs immer mit absolutem […]


php: better way to name variables - because you want to be understood
2009-07-21
IN1, 2009-07-21 09:22:29
IN1, 2023-07-25 21:09:34


I would like to share how I have been naming variables for many years: camelCase prefixed with a leading letter, which gives a hint about the data type.

This style resembles the so-called Hungarian notation, but not completely.

boolean

// leading $b for boolean type
$bSuccess = true;

integer



This website uses Cookies to provide you with the best possible service. Please see our Privacy Policy for more information. Click the check box below to accept cookies. Then confirm with a click on "Save".