I hereby claim:
- I am jackbaron on github.
- I am hoangnhat (https://keybase.io/hoangnhat) on keybase.
- I have a public key ASAv-XdDvdn6X-RtGQf0_tU_b8C2hexfpfpNUKPYP3nSkAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| ;(function(ns){ | |
| /** | |
| * mb_strwidth | |
| * @param String | |
| * @return int | |
| * @see http://php.net/manual/ja/function.mb-strwidth.php | |
| */ | |
| var mb_strwidth = function(str){ | |
| var i=0,l=str.length,c='',length=0; | |
| for(;i<l;i++){ |
Source: https://medium.com/@Mahmoud_Zalt/eloquent-relationships-cheat-sheet-5155498c209
| One to one ( 1-1) |
One to many ( 1-n) |
Poly one to many ( 1x-n) |
Many to many ( n-n) |
Poly many to many ( nx-n) |
|
|---|---|---|---|---|---|
| Number of models | 2 only | 2 only | 3 and above | 2 only | 3 and above |
| Number of tables | 2 (1/model) | 2 (1/model) | 3+ (1/model) | 3 (1/model + pivot) | 4+ (1/model + pivot) |
| Pivot table | - | - | - | required |
| <?php | |
| /* | |
| * XSS filter, recursively handles HTML tags & UTF encoding | |
| * Optionally handles base64 encoding | |
| * | |
| * ***DEPRECATION RECOMMENDED*** Not updated or maintained since 2011 | |
| * A MAINTAINED & BETTER ALTERNATIVE => kses | |
| * https://github.com/RichardVasquez/kses/ | |
| * | |
| * This was built from numerous sources |