PHP code example of canaryphp / canaryphptools

1. Go to this page and download the library: Download canaryphp/canaryphptools library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

canaryphp / canaryphptools example snippets



db = new CanaryPHPTools\Database();
    $rowCount = $db->select('canary',['where'=>[':id'=>$id]]);
    //Result : Rowcount
    //The connection closed after getting rowcount

    
     CanaryPHPTools\Database();
    $data = $db->fetch('canary',['where'=>[':id'=>$id],'sql'=>'LIMIT 10']);
    foreach($data as $user){
        echo "Id :{$user['id']} ".
        echo "Fullname :{$user['fullname']}";
    }
    //Result : Rowcount
    //The connection closed after getting rowcount


     = new CanaryPHPTools\Mailer();
    $to = '[email protected]';
    $name = 'canary';
    $subject = 'Happy birthday';
    $body = 'Hi, myname is canary';
    $mail->prepare($to,$name,$subject,$body);
    $mail->addAttachment('/happybirthday.jpg', 'hpd.jpg');
    $mail->execute();
    if($mail->_MAIL_SENT){
        echo 'Message has been sent';
    }else{
        echo $mail->_MAIL_ERROR;
    }


    idate :
    $false_e = '[email protected]';
    $true_e = '[email protected]';
    //check email
    //Alowed email Domains configure in config file
    //1
    $va = new CanaryPHPTools\Validate();
    $va->email('user email',$false_e);
    var_dump($va->EMAIL_PASSED());// false
    var_dump($va->_EMAIL_ERRORS);// array(1) { [0]=> string(62) "Invalid user email domain , enter from available domains ." }
    $va = null;
	//2
	$va = new CanaryPHPTools\Validate();
	$va->email('email',$true_e);
    echo $va->EMAIL_PASSED();// true
    var_dump($va->_EMAIL_ERRORS);// array(0) {}
    //Filter(Sanitize)
    var_dump(CanaryPHPTools\Filter::email("mldfjkgj(_èç_è²)à²==)èàç:::!;!:,@gmail.com"));//string(20) "[email protected]"


/Cookies
$ck = new CanaryPHPTools\Cookies();
    //Set cookie
$ck->set('cookie','value');
    //get cookie
$ck->get('cookie');//(string) : value
//delete cookie
$ck->delete('cookie');
//Session
$se = new CanaryPHPTools\Session();
//Set Session
$se->set('cookie','value');
    //get Session
$se->get('cookie');//(string) : value
    //delete Session
$se->delete('cookie');


    directory :__ARRAY__ in your_project/locale
//create default.php in : your_project/locale/__ARRAY__
//file content default.php :
/*
        
            $TRAN = [
                "language"=>
                        [
                            "name"=>"english",
                            "code"=>"en"
                        ],
                'msg'=>[],
            ];
$TRAN['msg']['Hello'] = 'Hello world !';*/
$tr = new ArrayTranslate('your_project/locale');
var_dump($tr->_a('Hello'));// (string) : "Hello world !"


aptcha : configure secretkey and site key in config php and add this before </head> : <script src="https://www.google.com/recaptcha/api.js" async defer></script>
$re = new Recaptcha();
$re->checkbox();
//the location you want to show recaptcha box
echo $re->_RECAPTCHA_BOX;//show recaptcha box
//check if recaptcha passed
$re->_RECAPTCHA_PASSED;// (bool)
//recaptcha errors
var_dump($re->_RECAPTCHA_ERRORS);


CanaryPHPTools\Html::tag('p',['class'=>'text-success']).'Welcome'.CanaryPHPTools\Html::etag('p');//<p class='text-success'>Welcome</p>
//OR
$p .= CanaryPHPTools\Html::tag('p','class=text-success').'Welcome'.CanaryPHPTools\Html::etag('p');//<p class='text-success'>Welcome</p>


= new CanaryPHPTools\Log('your_log/directory');
//add log
$log->add('Error connection','d','logfile.txt');// 'd' === danger also(w===warning,i===info)
//you can clear log in : your_log/directory
$log->clear();


 = new CanaryPHPTools\GetVisitorInfo('45.56.103.96');//'45.56.103.96' you can replace any valid ip
$info->getCountryName();//for example : Algeria
$info->getCountryCurrency();//For example : DZA


n = CanaryPHPTools\TokenGenerator::generate(25,\CanaryPHPTools\TokenGenerator::MIX);//return  : 'string(25) "iA15df3e3da86d36814470298"'