mb_split_words():mb_split('\s+', $value)
- Chained comparison (
a < b < c) - Named function arguments (
function a(b: int, c: string)anda(c: 'foo')) - Conditional catch blocks
try {
if (true) {
throw new MinorError()
} else {
throw new MajorError()
}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "basics": { | |
| "name": "Sebastian Hädrich", | |
| "label": "Programmer", | |
| "image": "", | |
| "email": "job-offer@sebastian-haedrich.de", | |
| "phone": "", | |
| "url": "https://sebastian-haedrich.de", | |
| "summary": "", | |
| "location": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Object.defineProperty(Number.prototype, "milliseconds", { | |
| get() { | |
| return this / 1000; | |
| }, | |
| configurable: true, | |
| }); | |
| Object.defineProperty(Number.prototype, "seconds", { | |
| get() { | |
| return this; | |
| }, |
| View topic | Edit topic | Action | Description | Repositories | Followers | |
|---|---|---|---|---|---|---|
| ✓ | oop | oop | create | 10,813 | ||
| object-oriented | create | 1,030 | ||||
| ✓ | object-oriented-programming | create | 6,518 | |||
| ✓ | bootstrap | bootstrap | edit | add sections to description | 63,120 | 81.7k |
| ✓ | tailwind | tailwind | edit | add sections to description | 10,014 | 410 |
| ✓ | infrastructure-as-code | [inf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| dump(nullValue()); | |
| </cfscript> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| key = GeneratePBKDFKey('PBKDF2WithSHA512','top_secret','sodium_chloride',2000,8); | |
| </cfscript> |
Hier findest du ein einfaches Beispiel, wie du mehrere Formulare und auch Infotexte so kombinieren kannst, dass die Daten erst clientseitig gespeichert werden und später gebündelt zur Verfügung stehen, um beispielsweise an eine serverseitige Scriptsprache gesendet zu werden.
See it in action: http://codepen.io/anon/pen/zxLqqp