Skip to main content

PHP , MEMORY, die function, hidestring,

Only variables should be passed by reference
$tmp = explode('.', $file_name);
$file_extension = end($tmp);
---
 public function register_user($user){ 
 
   $this->db->set($user);
$insert =   $this->db->insert('user');
if ($insert){
   return $this->db->insert_id();
}
else {
return false;
}
 
   }

 public function register_user($user){ 
   $this->db->set($user);
  $insert =   $this->db->insert('user');
if ($insert){
   return $this->db->insert_id();
}
else {
return false;
}
 
   }

 $this->db->set($feild);

            $insert = $this->db->insert($tablename);
            if ($insert):
                return $this->db->insert_id();
            endif;
        else: return "Invalid Input Provided";

_______________________________________________________________

Just add this below line to before line of you getting error in your file

ini_set('memory_limit', '-1');

It will take unlimited memory usage of server, it's working fine.

_______________________________________________________________

die( ) function is used to display a message and exit the script. It may be used to print alternate message . Instead of showing error it will show the user friendly message.
die( ) function is only used to print string messages .value of variables cannot print with die( ) function.
________________________________________________________________

<?php
function maskPhoneNumber($number){
 
    $mask_number =  str_repeat("*", strlen($number)-4) . substr($number, -4);
 
    return $mask_number;
}
echo maskPhoneNumber('08066417364');
?>
____________________________________________________________________

http://programmerblog.net/create-restful-web-services-in-codeigniter/
______________________________________________________________________

NOTE : Check htaccess when setup ci project anywhere.(if not gives page not found error.)
Check database and model load (if gives model load error)

______________________________________________________________________

## UNSET POST VARIABLES
<?php
if (!isset($_SESSION)) {
    session_start();
}

if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    $_SESSION['postdata'] = $_POST;
    unset($_POST);
    header("Location: ".$_SERVER['PHP_SELF']);
    exit;
}
?>













Comments

Popular posts from this blog

SETUP REST API IN CI

1. Create Rest_controller.php inside controllers and paste code: <?php defined('BASEPATH') OR exit('No direct script access allowed'); require APPPATH . '/libraries/API_Controller.php'; class Rest_controller extends API_Controller { public function __construct() { parent::__construct(); } public function index() { $this->api_return(             [ 'status' => true,                'result' => "Welcome to Testservices."             ],         200); } } ?> 2. Create api.php inside config and paste code : <?php defined('BASEPATH') OR exit('No direct script access allowed'); /**  * API Key Header Name  */ $config['api_key_header_name'] = 'X-API-KEY'; /**  * API Key GET Request Parameter Name  */ $config['api_key_get_name'] = 'key'; /**  * API Key POST Request Parameter Name ...

NGrok Setup

 https://dashboard.ngrok.com/get-started/setup 1. Unzip to install On Linux or Mac OS X you can unzip ngrok from a terminal with the following command. On Windows, just double click ngrok.zip to extract it. unzip /path/to/ngrok.zip 2. Connect your account Running this command will add your authtoken to the default ngrok.yml configuration file. This will grant you access to more features and longer session times. Running tunnels will be listed on the endpoints page of the dashboard. ngrok config add-authtoken 1woFn9zVqcI4VeGuSIiN2VtmnPa_ZXuAuF1AAPkqApr7WVsQ 3. Fire it up Read the documentation on how to use ngrok. Try it out by running it from the command line: ngrok help To start a HTTP tunnel forwarding to your local port 80, run this next: ngrok http 80

API ( service ) Image or Video Upload

## SAVE  VIDEO public function uploadmedia() { $target_path = "assets/uploads/"; $target_path = $target_path . basename($_FILES['file']['name']); if(move_uploaded_file($_FILES['file']['tmp_name'], $target_path)) { $this->api_return( [ 'status' => true,    'result' => 'uploaded success' ], 200); } else{ $this->api_return( [ 'status' => false,    'result' => 'failed' ], 20); } } ## SAVE FILE IMAGE OR VIDEO public function savefile() { $filetype = $_FILES['file']['type']; if (strpos($filetype, 'image') !== false) { $type = 'image'; } if (strpos($filetype, 'video') !== false) { $type = 'video'; }         $filename = trim($_FILES['file']['name']); // $userid = trim($this->input->get('userid'));...