全自動クラウド会計ソフトfreeeの開発者向けAPIのドキュメントです。
本APIを利用することで、あなたのアプリやサービスをfreeeと連携させることができます。
<?php | |
function test($init, $key = 'a') | |
{ | |
$var = $init; | |
$var[$key] = 1; | |
echo var_export($init, true), ': ', is_array($var) ? 1 : 0, "\n"; | |
} | |
test(null); // OK |
javascript | |
ES6ValidationInspection | |
JSAccessibilityCheckInspection | |
JSBitwiseOperatorUsageInspection | |
JSCheckFunctionSignaturesInspection | |
JSClosureCompilerSyntaxInspection | |
JSCommentMatchesSignatureInspection | |
JSComparisonWithNaNInspection | |
JSConsecutiveCommasInArrayLiteralInspection |
<ImageButton | |
android:id="@+id/imageView01" | |
android:layout_width="wrap_content" | |
android:layout_height="match_parent" | |
android:layout_margin="3dp" | |
android:layout_weight="1" | |
android:background="@drawable/btn_main01" | |
android:elevation="3dp" /> | |
#!/bin/sh | |
FrameworkName="MyKitName" | |
rm -rf ./Debug | |
mkdir ./Debug | |
cp -r ./Debug-iphoneos/${FrameworkName}.framework ./Debug/${FrameworkName}.framework | |
lipo -create ./Debug-iphoneos/${FrameworkName}.framework/${FrameworkName} ./Debug-iphonesimulator/${FrameworkName}.framework/${FrameworkName} -output ./Debug/${FrameworkName}.framework/${FrameworkName} |
/** | |
* NSNotificationのようなもの | |
* 通知で送る情報が詰まったオブジェクト | |
*/ | |
public class MyEventObject extends EventObject { | |
public static final String TAG = "MyEventObject"; | |
public enum EventType { | |
Hoge, |
#!/bin/bash -x | |
# Description:PPTP for CentOS 6.4 64bit | |
# 2013/07/28 @ysaotome | |
( | |
### setting | |
/bin/cat << _SECRETS_ > /tmp/SECRETS_TMP.txt | |
#==============================================\n | |
# username auth_server password auth_ipaddress\n | |
"hoge001" "pptpd" "hoge##123" *\n |
// Intercepting HTTP calls with AngularJS. | |
angular.module('MyApp', []) | |
.config(function ($provide, $httpProvider) { | |
// Intercept http calls. | |
$provide.factory('MyHttpInterceptor', function ($q) { | |
return { | |
// On request success | |
request: function (config) { | |
// console.log(config); // Contains the data about the request before it is sent. |
<?php | |
/** | |
* @author Benjamin Lazarecki <[email protected]> | |
* Date: 07/06/12 | |
*/ | |
namespace Widop\Mink\Extension; | |
trait PopupDictionary |