发布于 2016-07-31 00:28:52 | 175 次阅读 | 评论: 0 | 来源: 网友投递

这里有新鲜出炉的Phalcon中文指南,程序狗速度看过来!

Phalcon开源PHP框架

PhalconPHP 是一个使用 C 扩展开发的 PHP Web 框架,提供高性能和低资源占用。


Cphalcon 3.0.0 发布。

更新内容:

  • PHP 5.3 and 5.4 are now fully deprecated

  • PhalconMvcModelValidation is now deprecated in favor of PhalconValidation

  • Changed default hash algorithm in PhalconSecurity to CRYPT_BLOWFISH_Y

  • Changed constructor of PhalconMvcModel to allow pass an array of initialization data

  • Removed support for prefixes strategy in PhalconLoader

  • Now PhalconMvcView supports many views directories at the same time

  • An absolute path can now be used to MvcView::setLayoutsDir

  • Fixed odd view behavior#1933 related to setLayout() and pick()

  • PhalconDi is now bound to services closures allowing use PhalconDi as $this to access services within them

  • If an object is returned after firing the event beforeServiceResolve in PhalconDi this overrides the default service localization process

  • Placeholders :controller and :action in MvcRouter now defaults to /([\w0-9\_\-]+)instead of /([\a-zA-Z0-9\_\-]+)

  • Modifier #u (PCRE_UTF8) is now default in regex based routes in MvcRouter

  • Return 'false' from an action disables the view component (same as $this->view->disable())

  • Return a string from an action takes it as the body of the response (same as return $this->response->setContent('Hello world'))

  • Return a string from an MvcMicro handler takes it as the body of the response

  • MvcRouterRoute now escapes characters such as . or + to avoid unexpected behaviors

  • Closures used as handlers inMvcMicro are now bound to the $app instance

  • Routes now can have an associated callback that can override the default dispatcher + view behavior

  • PhalconMvcModel now implements JsonSerializable making easy serialize model instances

  • When destructing a MvcModelManager PHQL cache is clean

  • Method isSetOption in PhalconValidationValidatorInterface marked as deprecated, please use hasOption

  • Added internal check "allowEmpty" before calling a validator. If it option is true and the value of empty, the validator is skipped

  • Added default header: Content-Type: "application/json; charset=UTF-8" in methodPhalconHttpResponse::setJsonContent

  • Now PhalconEventsEvent implements PhalconEventsEventInterface

  • PhalconEventsEvent::getCancelable renamed to PhalconEventsEvent::isCancelable

  • Removed PhalconEventsManager::dettachAll in favor ofPhalconEventsManager::detachAll

  • PhalconMvcModelCriteria::getOrder renamed toPhalconMvcModelCriteria::getOrderBy

  • Added method getOption() in PhalconMvcModelRelationInterface

  • Added ability to spoof HTTP request method

  • Added FULLTEXT index type to PhalconDbAdapterPdoMysql

  • Fixed the use of the annotation router with namespaced controllers

  • Added PhalconAclRoleAware and PhalconAclResourceAware Interfaces, Now you can pass objects to PhalconAclAdapterInterface::isAllowed as roleName and resourceName, also they will be automatically passed to function defined inPhalconAclAdapterInterface::allow or PhalconAclAdapterInterface::deny by type

  • PhalconAclAdapterInterface::allow and PhalconAclAdapterInterface::deny have 4th argument - function, which will be called when usingPhalconAclAdapterInterface::isAllowed

  • PhalconAclAdapterInterface::isAllowed have 4th argument - parameters, you can pass arguments for function defined in PhalconAclAdapterInterface:allow orPhalconAclAdapterInterface::deny as associative array where key is argument name

  • Added method getActionSuffix() in PhalconDispatcherInterface

  • CLI parameters are now handled consistently.

  • Added PhalconMvcControllerBindModelInterface and associated model type hint loading through dispatcher.

  • Added PhalconDispatcher::hasParam().

  • PhalconCliConsole and PhalconMvcApplication now inherit PhalconApplication.

  • Fixed afterFetch event not being sent to behaviors

  • Fixed issue with radio not being checked when default value is 0 #11358

  • Fixed issue with Model::__set that was bypassing setters #11286

  • Fixed issue with Model::__set that was setting hidden attributes directly when setters are not declared #11286

  • Added PhalconCliDispatcherInterfacePhalconCliTaskInterface,PhalconCliRouterInterface and PhalconCliRouterRouteInterface.

  • Added PhalconMvcCollection::updatePhalconMvcCollection::create andPhalconMvcCollection::createIfNotExist

  • Removed __construct from all interfaces #11410

  • Fires the dispatch:beforeException event when there is any exception during dispatching#11458

  • Added OR operator for PhalconMvcModelQueryBuilder methods: betweenWhere,notBetweenWhereinWhere and notInWhere

  • Fixed bug of destroy method of PhalconSessionAdapterLibmemcached

  • Added PhalconCacheBackendMemcache::addServers to enable pool of servers for memcache

  • Added setLastModified method to PhalconHttpResponse

  • Added PhalconValidationValidatorDate

  • Added PhalconQueueBeanstalk::ignore() It removes the named tube from the watch list for the current connection.

  • Added PhalconQueueBeanstalk::pauseTube() Can delay any new job being reserved for a given time.

  • Added PhalconQueueBeanstalk::kick() It moves jobs into the ready queue. If there are any buried jobs, it will only kick buried jobs. Otherwise it will kick delayed jobs.

  • Added PhalconQueueBeanstalk::listTubeUsed() Returns the tube currently being used by the client.

  • Added PhalconQueueBeanstalk::listTubesWatched() Returns a list tubes currently being watched by the client.

  • Added PhalconQueueBeanstalk::peekDelayed() Return the delayed job with the shortest delay left.

  • Added PhalconQueueBeanstalk::jobPeek() Return job.

  • Mcrypt is replaced with openssl in PhalconCrypt

  • Default encrypt algorithm in PhalconCrypt is now changed to AES-256-CFB

  • Removed methods setMode(), getMode(), getAvailableModes() in PhalconCryptInterface

  • Added PhalconAssetsManager::exists() to check if collection exists

  • PhalconMvcModelManager::load() now can load models from aliased namespaces

  • PhalconMvcModelTransactionManager now correctly keeps account of transactions#11554

  • PhalconDbDialectSqlite now maps additional column types to SQLite columns equivalents.

  • PhalconSecurity is using now PhalconSecurityRandom

  • Enforced that PhalconSecurity::getToken() and PhalconSecurity::getTokenKey() return a random value per request not per call

  • PhalconSecurity::getToken() and PhalconSecurity::getTokenKey() are using nowPhalconSecurity::_numberBytes instead of passed as a argument or hardcoded value

  • PhalconSecurity::hash() corrected not working CRYPT_STD_DES, CRYPT_EXT_DES, MD5, CRYPT_SHA256

  • PhalconSecurity::hash() CRYPT_SHA512 fixed wrong salt length

  • Added missing unit-tests for PhalconSecurity

  • Fixed Filter::add method handler #11581

  • Removed PhalconSession #11340

  • PhalconTag::getTitle() shows a title depending on prependTitle and appendTitle

  • Using a settable variable for the Mongo Connection Service name instead of a hard coded string #11725

  • Added new getter PhalconMvcModelQueryBuilder::getJoins() - to get join parts from query builder

  • Fixed PhalconDbDialectOracle::prepareTable() to correctly generate SQL for table aliases #11799

  • Fixed PhalconMvcModelResultset::update() - removed endless loop queries

  • The cache backend adapters now returns boolean on callPhalconCacheBackendInterface::save

  • Fixed the Session write callback #11733

  • Added 'PhalconLoader::registerFiles' & 'PhalconLoader::getFiles'. This allows you to add files to the autoloader

  • Added PhalconSecurity::hasLibreSsl and PhalconSecurity::getSslVersionNumber

  • Added new setter PhalconEscaper::setDoubleEncode() - to allow setting/disabling double encoding

  • Added PhalconCacheFrontendMsgpack - Added Msgpack Support for Frontend Cache

  • PhalconDebugDump skip debugging di, fix detecting private/protected properties

  • Added option to validate multiple fields with one validator(fix uniqueness validator as well), also removes unnecessary model => $this in PhalconValidationValidatorUniqueness.

  • PhalconValidationValidatorAlpha now correctly validates non-ASCII characters #11386

  • PhalconValidationValidatorDigit now correctly validates digits #11374

  • Added PhalconValidationCombinedFieldsValidator, validation will pass array of fields to this validator if needed

  • Added ability to autoescape Flash messages #11448

  • Fixed PhalconConfig::merge for working with php7

  • Added ability to use custom delimiter for PhalconText::camelize andPhalconText::uncamelize #10396

  • Added support of CONNECTTRACE and PURGE HTTP methods

  • Refactored PhalconHttpRequest::getHttpHost. Now it always return host name or empty string. Optionally validates and clean host name #2573

  • Added PhalconHttpRequest::getPort. To get information about the port on which the request is made.

  • Added PhalconHttpRequest::setStrictHostCheck andPhalconHttpRequest::isStrictHostCheck to manage strict validation of host name.

  • Fixed matching host name by PhalconMvcRoute::handle when using port on current host name #2573

  • Fixed PhalconText:dynamic() to allow custom separator #11215

  • Fixed PhalconValidation::appendMessage to allow append message to the empty stack#10405

  • Fixed PhalconSessionFlash::getMessages. Now it returns an empty array in case of non existent message type request #11941

  • Amended PhalconMvcRouterInterface and PhalconMvcRouter. Added missed addPurge,addTrace and addConnect methods

  • Fixed incorrect query when using NULL fields withPhalconValidationValidatorUniqueness

  • Fixed PhalconFormsForm::getValue. Now Elements can have names that match with the internal Form getters #10398

  • Add setContentLength() method to PhalconHttpResponse

  • Fixed PhalconMvcModelManager::_mergeFindParameters - Merging conditions #11987

  • Renamed PhalconHttpRequest::isSoapRequest to PhalconHttpRequest::isSoap andPhalconHttpRequest::isSecureRequest to PhalconHttpRequest::isSecure. Left the originals functions as aliases and marked them deprecated.

  • Fixed wildcard inheritance in PhalconAclAdapterMemory #12004

  • Dropped support of Oracle #12008

  • Improved PhalconMvcCollection::findById. Added check if a id in a valid format #12010

  • Added convert option to PhalconValidationValidatorUniqueness to convert values to do the database lookup #12005

下载地址:



历史版本 :
Cphalcon 3.3.1 发布,PHP 的 C 扩展 Web 框架
Cphalcon 3.3.0 发布,PHP 的 C 扩展 Web 框架
Phalcon7 发布 Dao7-1.3.2,改进事件机制
Phalcon7 发布 Dao7-1.3.1.1,增强对数据库的读写分离
Phalcon7 发布 Dao7-1.3.1,修复了一些 Bug
PhalconPHP 3.2.2 发布,高性能 PHP 框架
PhalconPHP 3.2.1 正式发布,高性能 PHP 框架
Phalcon7 发布 Dao7-1.3.0.2 重要更新
PhalconPHP 3.2.0 正式发布,高性能 PHP 框架
Phalcon7 发布 Dao7-1.3.0,增强了验证组件功能
Cphalcon 3.1.2 发布,PHP 的 C 扩展 Web 框架
Phalcon7 1.2.4 发布,高性能 PHP 7 框架
最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务