flux
flux copied to clipboard
Fluent regular expressions in PHP
Results
1
flux issues
Sort by
recently updated
recently updated
newest added
the implementation of: ``` $flux->not('something'); ``` would be of great use to myself ``` (?!something) ``` An implementation of: ``` public function not($string) { return $this->raw(sprintf('(?!%s)', $string)); } ```