Skip to content
Snippets Groups Projects
Commit 79639094 authored by Bitha17's avatar Bitha17
Browse files

chore: restructuring

parent 20d1e741
Branches
No related merge requests found
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
<?php
function preprocess($str) {
return str_replace(' ', '%20', $str);
}
function formatPrice($price) {
return number_format($price,0,',','.');
}
function isEmailValid($email) {
return filter_var($email, FILTER_VALIDATE_EMAIL);
}
?>
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment