It will replace high wages not workers. Same amount of workers or a little less but the overall pay that goes to employees will go down. Instead of paying someone fully qualified to do a job you pay someone less than half to check over the AI. The bonus thing is you hold the AI to account not a human when errors are made also. Public sector will be all over this.
Question
Swift-R
I've been using this code to validate user names. It only allows 0-9, a-z, A-Z, spaces...
if ( ! eregi ( "^[0-9A-Z_[:space:]]{1,}$", $username ) )But now, in PHP 5.3 the ereg and eregi functions are deprecated and will be deleted in PHP 6.0.
How can I do this without eregi?
Edited by MNunes2Link to comment
https://www.neowin.net/forum/topic/815802-php-eregi-replacement/Share on other sites
15 answers to this question
Recommended Posts