PHP code example of zulfajuniadi / php-rest-server
1. Go to this page and download the library: Download zulfajuniadi/php-rest-server 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/ */
zulfajuniadi / php-rest-server example snippets
composer create-project zulfajuniadi/php-rest-server your_directory
javascript
var _sync = Backbone.sync;
Backbone.sync = function(method, model, options) {
options.beforeSend = function(xhr) {
xhr.setRequestHeader('Auth-Token' , [generated_token]);
}
_sync.call(this,method,model,options);
}