<< < 3 4 5 6 7 8 9 10 11 12 13 > >>   ∑:1482  Sort:Date

json_decode() - JSON Array to PHP Array
How to access elements from the PHP array returned from json_decode() on a JSON array? By default, json_decode() will convert a JSON Array to a PHP array with integer indexes of 0, 1, 2, ... There are different ways to access elements in the output PHP array: $array[i] - Returns the element of the g...
2021-08-04, ∼3654🔥, 1💬

Use & Sign in '@(...)' Expressions
How to enter &amp; sign in '@(...)' expressions? &amp; signs can be entered in '@(...)' expressions directly. For example, the following "set-variable" policy statement uses a "@(...)" expression that contains a &amp; sign: &lt;set-variable name="name" value="@("John &amp; Sons")...
2017-11-12, ∼3641🔥, 0💬

Comparing Two Strings with strcmp() in PHP
How To Compare Two Strings with strcmp()? PHP supports 3 string comparison operators, &lt;, ==, and &gt;, that generates Boolean values. But if you want to get an integer result by comparing two strings, you can the strcmp() function, which compares two strings based on ASCII values of their...
2016-10-13, ∼3641🔥, 0💬

API Management Service Resource Details
Where to see resource detailed information of my API Management Service on Azure Portal? Once you have located you API Management Service on the Azure resource list as described in the previous tutorial, you can click on the resource name to see more details by clicking the menu on the left: Resourc...
2018-04-21, ∼3624🔥, 0💬

Creating Your Own Functions in PHP
Where to find tutorials on how to create Your Own Functions in PHP? A collection of tutorials to answer many frequently asked questions on Creating Your Own Functions in PHP. Topics included in this collection are: Defining a User Function in PHP Invoking a User Function in PHP Returning a Value fro...
2016-12-28, ∼3619🔥, 0💬

"MyLib.cs" - VC# Class and Library
How to create a VC# class and build it into a library? If you want to create a VC# class and build it into a library, you can follow this tutorial: 1. Create the class source code file, MyLib.cs, with a text editor: // MyLib.cs // Copyright (c) FYIcenter.com using System; namespace fyi { public clas...
2017-08-06, ∼3616🔥, 0💬

EPUB 3.0 Samples at idpf.github.io
What EPUB 3.0 samples are provided at https://github.com/IDPF? Here is a list of EPUB 3.0 samples provided at https://github.com/IDPF : accessible_epub_3.epub - Strategies for creating EPUB 3 content that can be read by people with different preferred reading modalities. childrens-literature.epub - ...
2018-11-17, ∼3609🔥, 0💬

What Is Fabric CA (Certificate Authority)
What is Fabric CA (Certificate Authority)? Fabric CA (Certificate Authority) is a component of Hyperledger Fabric platform that manages certificates for Hyperledger Fabric Network as a MSP (Membership Service Provider). Similar to a standard PKI CA server, Fabric CA provides features such as: Regist...
2024-05-11, ∼3570🔥, 1💬

💬 2024-05-11 69@~~linux-4131: Ok lmao

HTML Tags in RSS "channel/item/description"
How to enter HTML Tags in RSS "channel/item/description"? In most cases, the "channel/item/description" XML element should contain a text string describing the RSS feed item without HTML tags. But sometimes, you would like to include HTML tags in the "channel/item/description" XML element, to provid...
2017-11-05, ∼3570🔥, 0💬

Policy to Modify Request and Response Body
Where to find tutorials on creating Policy to Modify Request and Response Body on Azure API Management Policy? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on creating Policy to Modify Request and Request Body on Azure API Management Policy. 'f...
2018-01-19, ∼3553🔥, 0💬

What Is epubcheck.jar
What Is epubcheck.jar? epubcheck.jar is a Java program that allows you to validate an EPUB file. It can detect many types of errors in EPUB. OCF container structure, OPF and OPS mark-up, and internal reference consistency are checked. EpubCheck can be run as a standalone command-line tool or used as...
2018-06-06, ∼3539🔥, 0💬

'retry' Policy Statement
How to use the "retry" Policy statement to retry "forward-request" multiple times for an Azure API service operation? The "retry" Policy Statement allows you to mainly execute "forward-request" statement multiple times if it fails. The "forward-request" Statement has the following syntax: &lt;re...
2018-01-16, ∼3539🔥, 0💬

EPUB 2.0 Sample - "The Geography of Bliss"
Where can I download the EPUB 2.0 sample book "The Geography of Bliss" by Eric Weiner? You can following this tutorial to download the EPUB 2.0 sample book "The Geography of Bliss" by Eric Weiner. 1. Go to adobe.com sample eBooks page . 2. Click "The Geography of Bliss: One Grump's Search for the Ha...
2018-10-26, ∼3531🔥, 0💬

Use '@(...)' Expressions in XML Attributes
When using "@(...)" expressions in XML attributes as part of an policy statement, do I need to worry about string quotations? If you are using a "@(...)" expression in XML attributes as part of an policy statement, and string literals are used in the "@(...)" expression, the syntax of the final poli...
2017-11-12, ∼3524🔥, 0💬

Converting Strings to Hex Numbers in PHP
How To Convert Strings to Hex Numbers? If you want convert a string into hex format, you can use the bin2hex() function. Here is a PHP script on how to use bin2hex(): &lt;?php $string = "Hello\tworld!\n"; print($string."\n"); print(bin2hex($string)."\n"); ?&gt; This script will print: Hello ...
2016-10-13, ∼3523🔥, 0💬

View Atom Feeds with IE (Internet Explorer)
How to View Atom Feeds with IE (Internet Explorer)? If you want to view Atom Feeds with IE (Internet Explorer), you can follow this tutorial: 1. Launch IE (Internet Explorer) 11. 2. Enter the following in the URL input box: http://dev.fyicenter.com/atom_ xml.php3. Press "Enter" key. You see the Atom...
2017-12-31, ∼3513🔥, 0💬

XML to JSON Conversion at jsonformatter.org
How to use the XML to JSON Conversion Tool at jsonformatter.org? If you want to try the XML to JSON Conversion Tool at jsonformatter.org, you can follow this tutorial: 1. Go to the JSON and XML Conversion Tool page at jsonformatter.org. 2. Enter the following XML document in the XML text area: &...
2018-03-18, ∼3510🔥, 0💬

Server-Side Image Maps in HTML
What Is a Server-Side Image Map? A server-side image map is an image inside a hyper link. The image must be defined with the "ismap" attribute in the "img" element. When a server-side image map is clicked in a browser window, the mouse coordinates will be delivered to the server by them to the end o...
2017-03-22, ∼3507🔥, 0💬

"cl" - Compile and Link C++ Program
How to use "cl" command tool to compile and link a C++ program? If you want to compile and link a standard C++ program with "cl" command tool, you can follow this tutorial: 1. Create a simple C++ program, Hello.cpp, with a text editor: #include &lt;iostream&gt; using namespace std; void main...
2017-08-21, ∼3506🔥, 0💬

"microsoft/windowsservercore:latest not found" Error
Why am I getting the "microsoft/windowsservercore:l atestnot found" Error? You are getting the "microsoft/windowsservercore:l atestnot found" Error, because Microsoft has deprecated "latest" tag across all Windows base images to encourage better container practices. 1. Visit (Docker Image) Windows S...
2022-12-15, ∼3496🔥, 0💬

Login to Azure API Publisher Portal - 2017 Version
How to login to Azure API Management Publisher Portal 2017 version? If you have given access permission to an Azure API Management Service publisher portal, you can login to the publisher portal as shown in this tutorial: 1. Enter the publisher portal URL in a Web browser as shown below: The first p...
2018-07-18, ∼3492🔥, 0💬

Use &amp; in '@(...)' Expressions
How to enter &amp;amp; entity in '@(...)' expressions? If you want to enter the &amp;amp; sequence in a '@(...)' expressions, you must enter it as &amp;amp;amp;. This is because all XML entities will be decoded immediately, when Azure process the policy XML document. For example, the fol...
2017-11-12, ∼3491🔥, 0💬

json.loads() - Loading JSON into Object
How to load (or decode, deserialize) a JSON string into a Python object using json.loads()? The json.loads() function allows you to load (or decode, deserialize) JSON strings (str, bytes or bytearray types) into Pythong objects: json.loads(s, *, encoding=None, cls=None, object_hook=None, parse_float...
2018-10-08, ∼3485🔥, 0💬

Cookie Files Stored on Your Computer in PHP
Where Are the Persistent Cookies Stored on Your Computer in PHP? The location and file names where persistent cookies are stored on your computer depend on which browser you are using. If you using Microsoft Internet Explorer, persistent cookies are stored in the \Documents and Settings\$user\Cookie...
2016-11-02, ∼3478🔥, 0💬

<< < 3 4 5 6 7 8 9 10 11 12 13 > >>   ∑:1482  Sort:Date