![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@camptocamp/php-date-formatter
Advanced tools
A Javascript datetime formatting and manipulation library using PHP date-time formats.
A Javascript datetime library that allows you to manipulate date/times using PHP date-time formats in javascript. This library was built with an intention to read and write date/timestamps to the database easily when working with PHP server code. Use cases for this library would involve reading and saving a timestamp to database in one format, but displaying it on client or html forms in another format. Maintaining a consistent PHP Date time format for both server side and client side validation should help in building extensible applications with various PHP frameworks easily.
This library is a standalone javascript library and does not depend on other libraries or plugins like jQuery.
The latest release of the library is v1.3.4. Check the CHANGE LOG for details.
View the library documentation and library demos at Krajee JQuery plugins.
You can use the bower
package manager to install. Run:
bower install php-date-formatter
You can use the composer
package manager to install. Either run:
$ php composer.phar require kartik-v/php-date-formatter "@dev"
or add:
"kartik-v/php-date-formatter": "@dev"
to your composer.json file
You can also manually install the plugin easily to your project. Just download the source ZIP or TAR ball and extract the plugin assets (css and js folders) into your project.
Step 1 Load the following assets in your header.
<script src="path/to/js/php-date-formatter.min.js" type="text/javascript"></script>
Step 2 You can now access the library using the DateFormatter
object. For example, you can convert any date string to javascript date object for a specific PHP date format.
var fmt = new DateFormatter();
var date1 = fmt.parseDate('23-Sep-2013 09:24:12', 'd-M-Y H:i:s');
var date2 = fmt.formatDate(date1, 'd-F-Y h:i:s A');
php-date-formatter is released under the BSD 3-Clause License. See the bundled LICENSE.md
for details.
FAQs
A Javascript datetime formatting and manipulation library using PHP date-time formats.
The npm package @camptocamp/php-date-formatter receives a total of 4 weekly downloads. As such, @camptocamp/php-date-formatter popularity was classified as not popular.
We found that @camptocamp/php-date-formatter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.