511. Notable PHP package: PHP Global Class Functions Hack Pack
Updated on: 2017-01-19
Posted on: 2017-01-19
When you need to create objects of different classes that belong to different namespaces, you need to declare those name spaces and instantiate the objects with the respective namespace declaration.
This may be a tedious task because it requires to write long lines of code to create those objects.
This package provides a better alternative. It can create global functions that will create objects of given classes and namespaces. The global functions can have simpler names that are easier to remember and type.
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)
This may be a tedious task because it requires to write long lines of code to create those objects.
This package provides a better alternative. It can create global functions that will create objects of given classes and namespaces. The global functions can have simpler names that are easier to remember and type.
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)
510. Notable PHP package: PHP.ini Settings
Updated on: 2017-01-17
Posted on: 2017-01-17
PHP uses a php.ini file to read values that configures many aspects of the way PHP code works.
If you change one configuration value but set it to an incorrect type, PHP may not work as you expect and you may take a long time to figure what you did wrong.
The class provides a solution that can not only read and change php.ini settings, but it also can verify if you are setting those values to the correct types that PHP is expecting.
It uses a knowledge base file that contains the types of values that PHP expects for most of the configuration settings, so it can validate all the values and tell you if you set any values incorrectly.
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)
If you change one configuration value but set it to an incorrect type, PHP may not work as you expect and you may take a long time to figure what you did wrong.
The class provides a solution that can not only read and change php.ini settings, but it also can verify if you are setting those values to the correct types that PHP is expecting.
It uses a knowledge base file that contains the types of values that PHP expects for most of the configuration settings, so it can validate all the values and tell you if you set any values incorrectly.
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)
508. Notable PHP package: PHP Secure Chat
Updated on: 2017-01-12
Posted on: 2017-01-12
When you want to implement a chat system between users of your application or site, there is always the concern that the messages may be viewed by people that manage the site, or even by spies and secret services because messages may have to be stored in the server before delivering them to the other users in the chat.
One way to avoid this problem is to implement end to end cryptography. This means that messages are encrypted before sent from the origin user and only decrypted by the destination users.
This package provides a solution to implement such approach in PHP. It uses some JavaScript to encrypt messages before sending from the origin user browser using the Blowfish algorithm.
It uses a secret key that only the origin and destination users know about. This way messages may be securely stored on the server database to be able to deliver to the recipient later when he is not online, without the risk of a third party viewing the messages without knowing the secret password.
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)
One way to avoid this problem is to implement end to end cryptography. This means that messages are encrypted before sent from the origin user and only decrypted by the destination users.
This package provides a solution to implement such approach in PHP. It uses some JavaScript to encrypt messages before sending from the origin user browser using the Blowfish algorithm.
It uses a secret key that only the origin and destination users know about. This way messages may be securely stored on the server database to be able to deliver to the recipient later when he is not online, without the risk of a third party viewing the messages without knowing the secret password.
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)
507. Notable PHP package: PHP Phonetic Transcriber
Updated on: 2017-01-10
Posted on: 2017-01-10
Pronouncing words depends on the language of each word, as well on the variant of the language that you may want to spell the words.
The International Phonetic Alphabet (IPA) was created to the define a standard for pronouncing the many phonemes that are used in different languages to pronounce the words.
The package can convert the phonemes of a word in a given language variant to the IPA phonemes using the Lingorado API. This way you can use a generic phoneme audio generation tool to pronounce any word in any language.
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)
The International Phonetic Alphabet (IPA) was created to the define a standard for pronouncing the many phonemes that are used in different languages to pronounce the words.
The package can convert the phonemes of a word in a given language variant to the IPA phonemes using the Lingorado API. This way you can use a generic phoneme audio generation tool to pronounce any word in any language.
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)
506. Notable PHP package: Geographer
Updated on: 2017-01-05
Posted on: 2017-01-05
There are many countries in the world that we all know their names but in different languages they have different names.
This package provides a solution that can return the names of countries, states and cities in different languages like English, Russian, German, French, Spanish, Italian, etc..
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)
This package provides a solution that can return the names of countries, states and cities in different languages like English, Russian, German, French, Spanish, Italian, etc..
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)
505. Notable PHP package: NASA Near Earth Orbit API Client
Updated on: 2017-01-03
Posted on: 2017-01-03
Near Earth objects can be comets or asteroids that came of the outer space and have been attracted to the planet Earth.
NASA keeps track of these objects and makes the known information about them available via an API.
This way you may be informed of known near Earth objects that are coming close to the planet.
This class provides means to extract the known information of near Earth objects using this NASA API.
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)
NASA keeps track of these objects and makes the known information about them available via an API.
This way you may be informed of known near Earth objects that are coming close to the planet.
This class provides means to extract the known information of near Earth objects using this NASA API.
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)
504. Notable PHP package: Burge CMF
Updated on: 2016-12-29
Posted on: 2016-12-29
Many sites use content management systems like WordPress, Drupal or others to publish their content.
However, sometimes you need a simple but still powerful solution to implement in your site without turning it into a WordPress or Drupal instance.
This package provides a content management framework that you can adapt to add content management features to an existing site like multi-user access with support for different languages for each user, custom page views for different languages, management of posts, categories and files, etc..
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)
However, sometimes you need a simple but still powerful solution to implement in your site without turning it into a WordPress or Drupal instance.
This package provides a content management framework that you can adapt to add content management features to an existing site like multi-user access with support for different languages for each user, custom page views for different languages, management of posts, categories and files, etc..
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)
503. Notable PHP package: PHP Table Chart Builder
Updated on: 2016-12-27
Posted on: 2016-12-27
Many PHP applications display data retrieved from databases or arrays in HTML tables as is, I mean as they are retrieved from the data source.
Often you need to generate reports that show calculations performed on the data displayed in the table columns.
The class can display data in table cells including additional values that show calculated cells that result from operations on column values like total, average, lowest and highest.
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)
Often you need to generate reports that show calculations performed on the data displayed in the table columns.
The class can display data in table cells including additional values that show calculated cells that result from operations on column values like total, average, lowest and highest.
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)
500. Notable PHP package: PHP HTML to Text Conversion
Updated on: 2016-12-22
Posted on: 2016-12-22
Most PHP applications are used to generate HTML but some times we need to also generate text versions of given HTML, like for instance to send by email that includes the HTML and the text version as alternative.
This package provides a solution that lets you automatically create the text version of a given text that you can use on email messages or for other purposes.
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (5) Trackbacks (0)
This package provides a solution that lets you automatically create the text version of a given text that you can use on email messages or for other purposes.
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (5) Trackbacks (0)
499. Notable PHP package: PHP Convert Words to Numbers
Updated on: 2016-12-20
Posted on: 2016-12-20
Very often applications need to be able to spell numbers using words in a given language. There are many solutions for that because it is a relatively easy problem.
However, there are not many solutions that do the opposite, i.e. take text written in a given language that represents a certain amount and return the number value of the amount that.
This class does precisely that. It takes a text representing an amount in English and returns the number that is spelled.
It is pretty smart to the point of understanding the different ordering that an amount can be spelled as well when the amount is spelled using Indian word variants like lakh and crore instead of millions and billions.
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)
However, there are not many solutions that do the opposite, i.e. take text written in a given language that represents a certain amount and return the number value of the amount that.
This class does precisely that. It takes a text representing an amount in English and returns the number that is spelled.
It is pretty smart to the point of understanding the different ordering that an amount can be spelled as well when the amount is spelled using Indian word variants like lakh and crore instead of millions and billions.
Read this article to learn more details about how this notable PHP package works.
More ... Post a comment See comments (0) Trackbacks (0)