I am using the base64_decode() and base64_encode() in my code but PHPCS says

The use of function base64_decode() is discouraged so what's the equivalence of this core PHP function in Magento2?

有帮助吗?

解决方案

Magento does not have equivalence function of base64_decode() and base64_encode() method.

Using phpcs:ignore you can use these two methods.Like Below

// phpcs:ignore Magento2.Functions.DiscouragedFunction
    base64_decode($content);
// phpcs:ignore Magento2.Security.LanguageConstruct.ExitUsage
许可以下: CC-BY-SA归因
scroll top